Searched refs:rblkcipher (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/crypto/ |
D | ablkcipher.c | 387 struct crypto_report_blkcipher rblkcipher; in crypto_ablkcipher_report() local 389 strncpy(rblkcipher.type, "ablkcipher", sizeof(rblkcipher.type)); in crypto_ablkcipher_report() 390 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<default>", in crypto_ablkcipher_report() 391 sizeof(rblkcipher.geniv)); in crypto_ablkcipher_report() 393 rblkcipher.blocksize = alg->cra_blocksize; in crypto_ablkcipher_report() 394 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize; in crypto_ablkcipher_report() 395 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize; in crypto_ablkcipher_report() 396 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize; in crypto_ablkcipher_report() 399 sizeof(struct crypto_report_blkcipher), &rblkcipher)) in crypto_ablkcipher_report() 468 struct crypto_report_blkcipher rblkcipher; in crypto_givcipher_report() local [all …]
|
D | blkcipher.c | 514 struct crypto_report_blkcipher rblkcipher; in crypto_blkcipher_report() local 516 strncpy(rblkcipher.type, "blkcipher", sizeof(rblkcipher.type)); in crypto_blkcipher_report() 517 strncpy(rblkcipher.geniv, alg->cra_blkcipher.geniv ?: "<default>", in crypto_blkcipher_report() 518 sizeof(rblkcipher.geniv)); in crypto_blkcipher_report() 520 rblkcipher.blocksize = alg->cra_blocksize; in crypto_blkcipher_report() 521 rblkcipher.min_keysize = alg->cra_blkcipher.min_keysize; in crypto_blkcipher_report() 522 rblkcipher.max_keysize = alg->cra_blkcipher.max_keysize; in crypto_blkcipher_report() 523 rblkcipher.ivsize = alg->cra_blkcipher.ivsize; in crypto_blkcipher_report() 526 sizeof(struct crypto_report_blkcipher), &rblkcipher)) in crypto_blkcipher_report()
|