Lines Matching defs:cipher
345 struct crypto_skcipher *cipher;
347 cipher = crypto_spawn_skcipher(spawn);
348 if (IS_ERR(cipher))
349 return PTR_ERR(cipher);
351 ctx->child = cipher;
354 crypto_skcipher_reqsize(cipher));
839 struct crypto_aead *cipher;
841 cipher = crypto_spawn_aead(spawn);
842 if (IS_ERR(cipher))
843 return PTR_ERR(cipher);
845 ctx->child = cipher;
848 crypto_aead_reqsize(cipher));