Searched refs:rblkcipher (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | ablkcipher.c | 385 struct crypto_report_blkcipher rblkcipher; in crypto_ablkcipher_report() local 387 strncpy(rblkcipher.type, "ablkcipher", sizeof(rblkcipher.type)); in crypto_ablkcipher_report() 388 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<default>", in crypto_ablkcipher_report() 389 sizeof(rblkcipher.geniv)); in crypto_ablkcipher_report() 391 rblkcipher.blocksize = alg->cra_blocksize; in crypto_ablkcipher_report() 392 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize; in crypto_ablkcipher_report() 393 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize; in crypto_ablkcipher_report() 394 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize; in crypto_ablkcipher_report() 397 sizeof(struct crypto_report_blkcipher), &rblkcipher)) in crypto_ablkcipher_report() 466 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()
|