Lines Matching defs:child
24 struct crypto_skcipher *child;
44 struct crypto_skcipher *child;
68 child = ctx->child;
69 crypto_skcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
70 crypto_skcipher_set_flags(child, crypto_skcipher_get_flags(parent) &
72 return crypto_skcipher_setkey(child, key, keylen);
181 skcipher_request_set_tfm(subreq, ctx->child);
249 skcipher_request_set_tfm(subreq, ctx->child);
299 struct crypto_skcipher *child;
302 child = crypto_spawn_skcipher(&ictx->spawn);
303 if (IS_ERR(child))
304 return PTR_ERR(child);
306 ctx->child = child;
310 crypto_free_skcipher(ctx->child);
316 crypto_skcipher_set_reqsize(tfm, crypto_skcipher_reqsize(child) +
326 crypto_free_skcipher(ctx->child);