| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | algif_hash.c | 81 err = crypto_wait_req(crypto_ahash_init(&ctx->req), &ctx->wait); in hash_sendmsg() 102 err = crypto_wait_req(crypto_ahash_update(&ctx->req), in hash_sendmsg() 121 err = crypto_wait_req(crypto_ahash_final(&ctx->req), in hash_sendmsg() 163 err = crypto_wait_req(err, &ctx->wait); in hash_sendpage() 171 err = crypto_wait_req(err, &ctx->wait); in hash_sendpage() 207 err = crypto_wait_req(crypto_ahash_init(&ctx->req), in hash_recvmsg() 215 err = crypto_wait_req(crypto_ahash_final(&ctx->req), in hash_recvmsg()
|
| H A D | testmgr.c | 1339 return crypto_wait_req(err, wait); in do_ahash_op() 2022 err = crypto_wait_req(err, &wait); in test_aead_vec_cfg() 2242 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req), in generate_aead_message() 2783 err = crypto_wait_req(err, &wait); in test_skcipher_vec_cfg() 2948 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in generate_random_cipher_testvec() 3344 ret = crypto_wait_req(crypto_acomp_compress(req), &wait); in test_acomp() 3360 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait); in test_acomp() 3421 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait); in test_acomp() 3788 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait); in do_test_kpp() 3826 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait); in do_test_kpp() [all …]
|
| H A D | tcrypt.c | 144 return crypto_wait_req(ret, wait); in do_one_aead_op() 172 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_aead_op() 711 return crypto_wait_req(ret, wait); in do_one_ahash_op() 733 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_ahash_op() 1170 rc[i] = crypto_wait_req(rc[i], &data[i].wait); in do_mult_acipher_op() 1415 return crypto_wait_req(ret, wait); in do_one_acipher_op()
|
| H A D | algif_skcipher.c | 136 err = crypto_wait_req(ctx->enc ? in _skcipher_recvmsg()
|
| H A D | algif_aead.c | 310 err = crypto_wait_req(ctx->enc ? in _aead_recvmsg()
|
| H A D | adiantum.c | 154 err = crypto_wait_req(crypto_skcipher_encrypt(&data->req), &data->wait); in adiantum_setkey()
|
| H A D | gcm.c | 131 err = crypto_wait_req(crypto_skcipher_encrypt(&data->req), in crypto_gcm_setkey()
|
| H A D | drbg.c | 1836 ret = crypto_wait_req(crypto_skcipher_encrypt(drbg->ctr_req), in drbg_kcapi_sym_ctr()
|
| /OK3568_Linux_fs/kernel/fs/verity/ |
| H A D | hash_algs.c | 198 err = crypto_wait_req(crypto_ahash_init(req), &wait); in fsverity_prepare_hash_state() 202 err = crypto_wait_req(crypto_ahash_update(req), &wait); in fsverity_prepare_hash_state() 263 err = crypto_wait_req(err, &wait); in fsverity_hash_page() 298 err = crypto_wait_req(crypto_ahash_digest(req), &wait); in fsverity_hash_buffer()
|
| /OK3568_Linux_fs/kernel/fs/crypto/ |
| H A D | crypto.c | 135 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait); in fscrypt_crypt_block() 137 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in fscrypt_crypt_block()
|
| H A D | fname.c | 120 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in fscrypt_fname_encrypt() 167 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait); in fname_decrypt()
|
| H A D | keysetup_v1.c | 79 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in derive_key_aes()
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-verity-target.c | 106 return crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 115 r = crypto_wait_req(crypto_ahash_update(req), wait); in verity_hash_update() 139 r = crypto_wait_req(crypto_ahash_init(req), wait); in verity_hash_init() 167 r = crypto_wait_req(crypto_ahash_final(req), wait); in verity_hash_final() 397 r = crypto_wait_req(crypto_ahash_update(req), wait); in verity_for_io_block()
|
| H A D | dm-crypt.c | 758 err = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in crypt_iv_eboiv_gen() 961 r = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in crypt_iv_elephant() 968 r = crypto_wait_req(crypto_skcipher_encrypt(req), &wait); in crypt_iv_elephant()
|
| /OK3568_Linux_fs/kernel/crypto/asymmetric_keys/ |
| H A D | public_key.c | 237 ret = crypto_wait_req(ret, &cwait); in software_key_eds_op() 378 ret = crypto_wait_req(crypto_akcipher_verify(req), &cwait); in public_key_verify_signature()
|
| H A D | asym_tpm.c | 488 ret = crypto_wait_req(ret, &cwait); in tpm_key_encrypt() 782 ret = crypto_wait_req(crypto_akcipher_verify(req), &cwait); in tpm_key_verify_signature()
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | blk-crypto-fallback.c | 336 if (crypto_wait_req(crypto_skcipher_encrypt(ciph_req), in blk_crypto_fallback_encrypt_bio() 423 if (crypto_wait_req(crypto_skcipher_decrypt(ciph_req), in blk_crypto_fallback_decrypt_bio()
|
| /OK3568_Linux_fs/kernel/Documentation/crypto/ |
| H A D | api-samples.rst | 78 err = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | crypto.h | 591 static inline int crypto_wait_req(int err, struct crypto_wait *wait) in crypto_wait_req() function
|
| /OK3568_Linux_fs/kernel/drivers/crypto/rockchip/ |
| H A D | rk_crypto_ahash_utils.c | 130 ret = crypto_wait_req(crypto_ahash_digest(req), &wait); in rk_ahash_fallback_digest()
|
| /OK3568_Linux_fs/kernel/net/tls/ |
| H A D | tls_sw.c | 270 ret = crypto_wait_req(ret, &ctx->async_wait); in tls_do_decryption() 1120 crypto_wait_req(-EINPROGRESS, &ctx->async_wait); in tls_sw_sendmsg() 1947 err = crypto_wait_req(-EINPROGRESS, &ctx->async_wait); in tls_sw_recvmsg() 2168 crypto_wait_req(-EINPROGRESS, &ctx->async_wait); in tls_sw_release_resources_tx()
|
| /OK3568_Linux_fs/kernel/drivers/crypto/rockchip/cryptodev_linux/ |
| H A D | rk_cryptodev.c | 713 ret = crypto_wait_req(crypto_akcipher_encrypt(req), &wait); in crypto_rsa_run() 716 ret = crypto_wait_req(crypto_akcipher_decrypt(req), &wait); in crypto_rsa_run()
|
| /OK3568_Linux_fs/kernel/drivers/crypto/qce/ |
| H A D | sha.c | 416 ret = crypto_wait_req(crypto_ahash_digest(req), &wait); in qce_ahash_hmac_setkey()
|
| /OK3568_Linux_fs/kernel/security/integrity/ima/ |
| H A D | ima_crypto.c | 321 err = crypto_wait_req(err, wait); in ahash_wait()
|
| /OK3568_Linux_fs/kernel/drivers/crypto/ |
| H A D | talitos.c | 2209 ret = crypto_wait_req(crypto_ahash_digest(req), &wait); in keyhash()
|