Searched refs:crypto_wait_req (Results 1 – 13 of 13) sorted by relevance
/linux-4.19.296/crypto/ |
D | algif_hash.c | 86 err = crypto_wait_req(crypto_ahash_init(&ctx->req), &ctx->wait); in hash_sendmsg() 107 err = crypto_wait_req(crypto_ahash_update(&ctx->req), in hash_sendmsg() 126 err = crypto_wait_req(crypto_ahash_final(&ctx->req), in hash_sendmsg() 168 err = crypto_wait_req(err, &ctx->wait); in hash_sendpage() 176 err = crypto_wait_req(err, &ctx->wait); in hash_sendpage() 212 err = crypto_wait_req(crypto_ahash_init(&ctx->req), in hash_recvmsg() 220 err = crypto_wait_req(crypto_ahash_final(&ctx->req), in hash_recvmsg()
|
D | testmgr.c | 248 ret = crypto_wait_req(crypto_ahash_update(req), wait); in ahash_partial_update() 343 ret = crypto_wait_req(crypto_ahash_digest(req), &wait); in __test_hash() 353 ret = crypto_wait_req(crypto_ahash_init(req), &wait); in __test_hash() 365 ret = crypto_wait_req(crypto_ahash_update(req), &wait); in __test_hash() 377 ret = crypto_wait_req(crypto_ahash_final(req), &wait); in __test_hash() 387 ret = crypto_wait_req(crypto_ahash_init(req), &wait); in __test_hash() 399 ret = crypto_wait_req(crypto_ahash_finup(req), &wait); in __test_hash() 469 ret = crypto_wait_req(crypto_ahash_digest(req), &wait); in __test_hash() 523 ret = crypto_wait_req(crypto_ahash_init(req), &wait); in __test_hash() 529 ret = crypto_wait_req(crypto_ahash_update(req), &wait); in __test_hash() [all …]
|
D | tcrypt.c | 147 return crypto_wait_req(ret, wait); in do_one_aead_op() 175 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_aead_op() 714 return crypto_wait_req(ret, wait); in do_one_ahash_op() 736 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_ahash_op() 1173 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_acipher_op() 1409 return crypto_wait_req(ret, wait); in do_one_acipher_op()
|
D | algif_skcipher.c | 140 err = crypto_wait_req(ctx->enc ? in _skcipher_recvmsg()
|
D | algif_aead.c | 314 err = crypto_wait_req(ctx->enc ? in _aead_recvmsg()
|
D | gcm.c | 137 err = crypto_wait_req(crypto_skcipher_encrypt(&data->req), in crypto_gcm_setkey()
|
D | drbg.c | 1833 ret = crypto_wait_req(crypto_skcipher_encrypt(drbg->ctr_req), in drbg_kcapi_sym_ctr()
|
/linux-4.19.296/fs/crypto/ |
D | crypto.c | 181 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait); in fscrypt_do_page_crypto() 183 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in fscrypt_do_page_crypto()
|
D | fname.c | 71 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in fname_encrypt() 116 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait); in fname_decrypt()
|
D | keyinfo.c | 61 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in derive_key_aes()
|
/linux-4.19.296/crypto/asymmetric_keys/ |
D | public_key.c | 132 ret = crypto_wait_req(crypto_akcipher_verify(req), &cwait); in public_key_verify_signature()
|
/linux-4.19.296/include/linux/ |
D | crypto.h | 512 static inline int crypto_wait_req(int err, struct crypto_wait *wait) in crypto_wait_req() function
|
/linux-4.19.296/fs/cifs/ |
D | smb2ops.c | 2803 rc = crypto_wait_req(enc ? crypto_aead_encrypt(req) in crypt_message()
|