Home
last modified time | relevance | path

Searched refs:crypto_cipher_encrypt_one (Results 1 - 25 of 48) sorted by relevance

12

/kernel/linux/linux-5.10/crypto/
H A Dxcbc.c63 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 Dcmac.c67 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 Dofb.c34 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 Dcipher.c78 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 Dpcbc.c31 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 Dvmac.c448 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 Dkeywrap.c237 crypto_cipher_encrypt_one(cipher, (u8 *)&block, in crypto_kw_encrypt()
H A Dcfb.c38 crypto_cipher_encrypt_one(skcipher_cipher_simple(tfm), dst, src); in crypto_cfb_encrypt_one()
H A Dessiv.c146 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 Dxcbc.c64 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 Dcmac.c68 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 Dofb.c35 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 Dcipher.c80 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 Dpcbc.c32 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 Dhctr2.c153 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 Dvmac.c449 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 Dkeywrap.c238 crypto_cipher_encrypt_one(cipher, (u8 *)&block, in crypto_kw_encrypt()
H A Dcfb.c39 crypto_cipher_encrypt_one(skcipher_cipher_simple(tfm), dst, src); in crypto_cfb_encrypt_one()
H A Dxctr.c44 crypto_cipher_encrypt_one(tfm, keystream, walk->iv); in crypto_xctr_crypt_final()
H A Dessiv.c147 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 Daes.c85 crypto_cipher_encrypt_one(ctx->fallback, dst, src); in p8_aes_encrypt()
/kernel/linux/linux-6.6/include/crypto/internal/
H A Dcipher.h156 * 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 Daes.c86 crypto_cipher_encrypt_one(ctx->fallback, dst, src); in p8_aes_encrypt()
/kernel/linux/linux-5.10/arch/arm/crypto/
H A Daes-neonbs-glue.c370 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 Daes-neonbs-glue.c366 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()

Completed in 14 milliseconds

12