Lines Matching refs:shash
118 struct crypto_shash *shash; in crypto_init_ahash_using_shash() local
123 shash = crypto_create_tfm(calg, &crypto_shash_type); in crypto_init_ahash_using_shash()
124 if (IS_ERR(shash)) { in crypto_init_ahash_using_shash()
126 return PTR_ERR(shash); in crypto_init_ahash_using_shash()
130 *ctx = shash; in crypto_init_ahash_using_shash()
133 crypto_ahash_set_flags(crt, crypto_shash_get_flags(shash) & in crypto_init_ahash_using_shash()
135 crt->reqsize = sizeof(struct shash_desc) + crypto_shash_descsize(shash); in crypto_init_ahash_using_shash()
228 struct crypto_shash *shash = ahash_to_shash(tfm); in crypto_ahash_setkey() local
231 err = crypto_shash_setkey(shash, key, keylen); in crypto_ahash_setkey()
234 crypto_shash_get_flags(shash) & in crypto_ahash_setkey()
604 struct crypto_shash *shash; in crypto_clone_ahash() local
606 shash = crypto_clone_shash(ahash_to_shash(hash)); in crypto_clone_ahash()
607 if (IS_ERR(shash)) { in crypto_clone_ahash()
608 err = PTR_ERR(shash); in crypto_clone_ahash()
612 *nctx = shash; in crypto_clone_ahash()