Searched refs:rblkcipher (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | ablkcipher.c | 361 struct crypto_report_blkcipher rblkcipher; in crypto_ablkcipher_report() local 363 memset(&rblkcipher, 0, sizeof(rblkcipher)); in crypto_ablkcipher_report() 365 strscpy(rblkcipher.type, "ablkcipher", sizeof(rblkcipher.type)); in crypto_ablkcipher_report() 366 strscpy(rblkcipher.geniv, "<default>", sizeof(rblkcipher.geniv)); in crypto_ablkcipher_report() 368 rblkcipher.blocksize = alg->cra_blocksize; in crypto_ablkcipher_report() 369 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize; in crypto_ablkcipher_report() 370 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize; in crypto_ablkcipher_report() 371 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize; in crypto_ablkcipher_report() 374 sizeof(rblkcipher), &rblkcipher); in crypto_ablkcipher_report()
|
D | blkcipher.c | 503 struct crypto_report_blkcipher rblkcipher; in crypto_blkcipher_report() local 505 memset(&rblkcipher, 0, sizeof(rblkcipher)); in crypto_blkcipher_report() 507 strscpy(rblkcipher.type, "blkcipher", sizeof(rblkcipher.type)); in crypto_blkcipher_report() 508 strscpy(rblkcipher.geniv, "<default>", sizeof(rblkcipher.geniv)); in crypto_blkcipher_report() 510 rblkcipher.blocksize = alg->cra_blocksize; in crypto_blkcipher_report() 511 rblkcipher.min_keysize = alg->cra_blkcipher.min_keysize; in crypto_blkcipher_report() 512 rblkcipher.max_keysize = alg->cra_blkcipher.max_keysize; in crypto_blkcipher_report() 513 rblkcipher.ivsize = alg->cra_blkcipher.ivsize; in crypto_blkcipher_report() 516 sizeof(rblkcipher), &rblkcipher); in crypto_blkcipher_report()
|
D | skcipher.c | 943 struct crypto_report_blkcipher rblkcipher; in crypto_skcipher_report() local 947 memset(&rblkcipher, 0, sizeof(rblkcipher)); in crypto_skcipher_report() 949 strscpy(rblkcipher.type, "skcipher", sizeof(rblkcipher.type)); in crypto_skcipher_report() 950 strscpy(rblkcipher.geniv, "<none>", sizeof(rblkcipher.geniv)); in crypto_skcipher_report() 952 rblkcipher.blocksize = alg->cra_blocksize; in crypto_skcipher_report() 953 rblkcipher.min_keysize = skcipher->min_keysize; in crypto_skcipher_report() 954 rblkcipher.max_keysize = skcipher->max_keysize; in crypto_skcipher_report() 955 rblkcipher.ivsize = skcipher->ivsize; in crypto_skcipher_report() 958 sizeof(rblkcipher), &rblkcipher); in crypto_skcipher_report()
|