Searched refs:rblkcipher (Results 1 – 2 of 2) sorted by relevance
| /linux-6.15/crypto/ |
| H A D | lskcipher.c | 267 struct crypto_report_blkcipher rblkcipher; in crypto_lskcipher_report() local 269 memset(&rblkcipher, 0, sizeof(rblkcipher)); in crypto_lskcipher_report() 271 strscpy(rblkcipher.type, "lskcipher", sizeof(rblkcipher.type)); in crypto_lskcipher_report() 272 strscpy(rblkcipher.geniv, "<none>", sizeof(rblkcipher.geniv)); in crypto_lskcipher_report() 274 rblkcipher.blocksize = alg->cra_blocksize; in crypto_lskcipher_report() 275 rblkcipher.min_keysize = skcipher->co.min_keysize; in crypto_lskcipher_report() 276 rblkcipher.max_keysize = skcipher->co.max_keysize; in crypto_lskcipher_report() 277 rblkcipher.ivsize = skcipher->co.ivsize; in crypto_lskcipher_report() 280 sizeof(rblkcipher), &rblkcipher); in crypto_lskcipher_report()
|
| H A D | skcipher.c | 593 struct crypto_report_blkcipher rblkcipher; in crypto_skcipher_report() local 595 memset(&rblkcipher, 0, sizeof(rblkcipher)); in crypto_skcipher_report() 597 strscpy(rblkcipher.type, "skcipher", sizeof(rblkcipher.type)); in crypto_skcipher_report() 598 strscpy(rblkcipher.geniv, "<none>", sizeof(rblkcipher.geniv)); in crypto_skcipher_report() 600 rblkcipher.blocksize = alg->cra_blocksize; in crypto_skcipher_report() 601 rblkcipher.min_keysize = skcipher->min_keysize; in crypto_skcipher_report() 602 rblkcipher.max_keysize = skcipher->max_keysize; in crypto_skcipher_report() 603 rblkcipher.ivsize = skcipher->ivsize; in crypto_skcipher_report() 606 sizeof(rblkcipher), &rblkcipher); in crypto_skcipher_report()
|