• Home
  • Raw
  • Download

Lines Matching refs:child

67 	struct crypto_sync_skcipher *child;  member
76 struct crypto_shash *child; member
86 struct crypto_aead *child; member
254 struct crypto_sync_skcipher *child = ctx->child; in cryptd_skcipher_setkey() local
257 crypto_sync_skcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK); in cryptd_skcipher_setkey()
258 crypto_sync_skcipher_set_flags(child, in cryptd_skcipher_setkey()
261 err = crypto_sync_skcipher_setkey(child, key, keylen); in cryptd_skcipher_setkey()
263 crypto_sync_skcipher_get_flags(child) & in cryptd_skcipher_setkey()
290 struct crypto_sync_skcipher *child = ctx->child; in cryptd_skcipher_encrypt() local
291 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, child); in cryptd_skcipher_encrypt()
296 skcipher_request_set_sync_tfm(subreq, child); in cryptd_skcipher_encrypt()
318 struct crypto_sync_skcipher *child = ctx->child; in cryptd_skcipher_decrypt() local
319 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, child); in cryptd_skcipher_decrypt()
324 skcipher_request_set_sync_tfm(subreq, child); in cryptd_skcipher_decrypt()
375 ctx->child = (struct crypto_sync_skcipher *)cipher; in cryptd_skcipher_init_tfm()
385 crypto_free_sync_skcipher(ctx->child); in cryptd_skcipher_exit_tfm()
475 ctx->child = hash; in cryptd_hash_init_tfm()
486 crypto_free_shash(ctx->child); in cryptd_hash_exit_tfm()
493 struct crypto_shash *child = ctx->child; in cryptd_hash_setkey() local
496 crypto_shash_clear_flags(child, CRYPTO_TFM_REQ_MASK); in cryptd_hash_setkey()
497 crypto_shash_set_flags(child, crypto_ahash_get_flags(parent) & in cryptd_hash_setkey()
499 err = crypto_shash_setkey(child, key, keylen); in cryptd_hash_setkey()
500 crypto_ahash_set_flags(parent, crypto_shash_get_flags(child) & in cryptd_hash_setkey()
537 struct crypto_shash *child = ctx->child; in cryptd_hash_init() local
545 desc->tfm = child; in cryptd_hash_init()
628 struct crypto_shash *child = ctx->child; in cryptd_hash_digest() local
636 desc->tfm = child; in cryptd_hash_digest()
664 desc->tfm = ctx->child; in cryptd_hash_import()
738 struct crypto_aead *child = ctx->child; in cryptd_aead_setkey() local
740 return crypto_aead_setkey(child, key, keylen); in cryptd_aead_setkey()
747 struct crypto_aead *child = ctx->child; in cryptd_aead_setauthsize() local
749 return crypto_aead_setauthsize(child, authsize); in cryptd_aead_setauthsize()
753 struct crypto_aead *child, in cryptd_aead_crypt() argument
770 aead_request_set_tfm(req, child); in cryptd_aead_crypt()
788 struct crypto_aead *child = ctx->child; in cryptd_aead_encrypt() local
792 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->encrypt); in cryptd_aead_encrypt()
798 struct crypto_aead *child = ctx->child; in cryptd_aead_decrypt() local
802 cryptd_aead_crypt(req, child, err, crypto_aead_alg(child)->decrypt); in cryptd_aead_decrypt()
839 ctx->child = cipher; in cryptd_aead_init_tfm()
849 crypto_free_aead(ctx->child); in cryptd_aead_exit_tfm()
992 return &ctx->child->base; in cryptd_skcipher_child()
1042 return ctx->child; in cryptd_ahash_child()
1099 return ctx->child; in cryptd_aead_child()