/kernel/linux/linux-5.10/crypto/ |
H A D | xcbc.c | 63 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey() 64 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey() 65 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey() 109 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_xcbc_digest_update() 117 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_xcbc_digest_update() 161 crypto_cipher_encrypt_one(tfm, out, prev); in crypto_xcbc_digest_final()
|
H A D | cmac.c | 67 crypto_cipher_encrypt_one(ctx->child, (u8 *)consts, (u8 *)consts); in crypto_cmac_digest_setkey() 142 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_cmac_digest_update() 150 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_cmac_digest_update() 195 crypto_cipher_encrypt_one(tfm, out, prev); in crypto_cmac_digest_final()
|
H A D | ofb.c | 34 crypto_cipher_encrypt_one(cipher, iv, iv); in crypto_ofb_crypt() 44 crypto_cipher_encrypt_one(cipher, walk.iv, walk.iv); in crypto_ofb_crypt()
|
H A D | cipher.c | 78 void crypto_cipher_encrypt_one(struct crypto_cipher *tfm, in crypto_cipher_encrypt_one() function 83 EXPORT_SYMBOL_GPL(crypto_cipher_encrypt_one); variable
|
H A D | pcbc.c | 31 crypto_cipher_encrypt_one(tfm, dst, iv); in crypto_pcbc_encrypt_segment() 54 crypto_cipher_encrypt_one(tfm, src, iv); in crypto_pcbc_encrypt_inplace()
|
H A D | vmac.c | 448 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 458 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 469 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 587 crypto_cipher_encrypt_one(tctx->cipher, dctx->nonce.bytes, in vmac_final()
|
H A D | keywrap.c | 237 crypto_cipher_encrypt_one(cipher, (u8 *)&block, in crypto_kw_encrypt()
|
H A D | cfb.c | 38 crypto_cipher_encrypt_one(skcipher_cipher_simple(tfm), dst, src); in crypto_cfb_encrypt_one()
|
H A D | essiv.c | 146 crypto_cipher_encrypt_one(tctx->essiv_cipher, req->iv, req->iv); in essiv_skcipher_crypt() 191 crypto_cipher_encrypt_one(tctx->essiv_cipher, req->iv, req->iv); in essiv_aead_crypt()
|
/kernel/linux/linux-6.6/crypto/ |
H A D | xcbc.c | 64 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey() 65 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey() 66 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey() 110 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_xcbc_digest_update() 118 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_xcbc_digest_update() 162 crypto_cipher_encrypt_one(tfm, out, prev); in crypto_xcbc_digest_final()
|
H A D | cmac.c | 68 crypto_cipher_encrypt_one(ctx->child, (u8 *)consts, (u8 *)consts); in crypto_cmac_digest_setkey() 143 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_cmac_digest_update() 151 crypto_cipher_encrypt_one(tfm, prev, prev); in crypto_cmac_digest_update() 196 crypto_cipher_encrypt_one(tfm, out, prev); in crypto_cmac_digest_final()
|
H A D | ofb.c | 35 crypto_cipher_encrypt_one(cipher, iv, iv); in crypto_ofb_crypt() 45 crypto_cipher_encrypt_one(cipher, walk.iv, walk.iv); in crypto_ofb_crypt()
|
H A D | cipher.c | 80 void crypto_cipher_encrypt_one(struct crypto_cipher *tfm, in crypto_cipher_encrypt_one() function 85 EXPORT_SYMBOL_NS_GPL(crypto_cipher_encrypt_one, CRYPTO_INTERNAL);
|
H A D | pcbc.c | 32 crypto_cipher_encrypt_one(tfm, dst, iv); in crypto_pcbc_encrypt_segment() 55 crypto_cipher_encrypt_one(tfm, src, iv); in crypto_pcbc_encrypt_inplace()
|
H A D | hctr2.c | 153 crypto_cipher_encrypt_one(tctx->blockcipher, hbar, hbar); in hctr2_setkey() 157 crypto_cipher_encrypt_one(tctx->blockcipher, tctx->L, tctx->L); in hctr2_setkey() 301 crypto_cipher_encrypt_one(tctx->blockcipher, rctx->first_block, in hctr2_crypt()
|
H A D | vmac.c | 449 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 459 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 470 crypto_cipher_encrypt_one(tctx->cipher, (u8 *)out, in); in vmac_setkey() 588 crypto_cipher_encrypt_one(tctx->cipher, dctx->nonce.bytes, in vmac_final()
|
H A D | keywrap.c | 238 crypto_cipher_encrypt_one(cipher, (u8 *)&block, in crypto_kw_encrypt()
|
H A D | cfb.c | 39 crypto_cipher_encrypt_one(skcipher_cipher_simple(tfm), dst, src); in crypto_cfb_encrypt_one()
|
H A D | xctr.c | 44 crypto_cipher_encrypt_one(tfm, keystream, walk->iv); in crypto_xctr_crypt_final()
|
H A D | essiv.c | 147 crypto_cipher_encrypt_one(tctx->essiv_cipher, req->iv, req->iv); in essiv_skcipher_crypt() 192 crypto_cipher_encrypt_one(tctx->essiv_cipher, req->iv, req->iv); in essiv_aead_crypt()
|
/kernel/linux/linux-5.10/drivers/crypto/vmx/ |
H A D | aes.c | 85 crypto_cipher_encrypt_one(ctx->fallback, dst, src); in p8_aes_encrypt()
|
/kernel/linux/linux-6.6/include/crypto/internal/ |
H A D | cipher.h | 156 * crypto_cipher_encrypt_one() - encrypt one block of plaintext 164 void crypto_cipher_encrypt_one(struct crypto_cipher *tfm,
|
/kernel/linux/linux-6.6/drivers/crypto/vmx/ |
H A D | aes.c | 86 crypto_cipher_encrypt_one(ctx->fallback, dst, src); in p8_aes_encrypt()
|
/kernel/linux/linux-5.10/arch/arm/crypto/ |
H A D | aes-neonbs-glue.c | 370 crypto_cipher_encrypt_one(ctx->tweak_tfm, walk.iv, walk.iv); in __xts_crypt() 402 crypto_cipher_encrypt_one(ctx->cts_tfm, buf, buf); in __xts_crypt()
|
/kernel/linux/linux-6.6/arch/arm/crypto/ |
H A D | aes-neonbs-glue.c | 366 crypto_cipher_encrypt_one(ctx->tweak_tfm, walk.iv, walk.iv); in __xts_crypt() 398 crypto_cipher_encrypt_one(ctx->cts_tfm, buf, buf); in __xts_crypt()
|