Lines Matching defs:cipher
341 struct crypto_skcipher *cipher;
343 cipher = crypto_spawn_skcipher(spawn);
344 if (IS_ERR(cipher))
345 return PTR_ERR(cipher);
347 ctx->child = cipher;
350 crypto_skcipher_reqsize(cipher));
795 struct crypto_aead *cipher;
797 cipher = crypto_spawn_aead(spawn);
798 if (IS_ERR(cipher))
799 return PTR_ERR(cipher);
801 ctx->child = cipher;
804 crypto_aead_reqsize(cipher)));