Home
last modified time | relevance | path

Searched refs:ecb_crypt (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/arch/x86/crypto/
Dcast5_avx_glue.c62 static int ecb_crypt(struct skcipher_request *req, bool enc) in ecb_crypt() function
117 return ecb_crypt(req, true); in ecb_encrypt()
122 return ecb_crypt(req, false); in ecb_decrypt()
Dblowfish_glue.c86 static int ecb_crypt(struct skcipher_request *req, in ecb_crypt() function
135 return ecb_crypt(req, blowfish_enc_blk, blowfish_enc_blk_4way); in ecb_encrypt()
140 return ecb_crypt(req, blowfish_dec_blk, blowfish_dec_blk_4way); in ecb_decrypt()
Ddes3_ede_glue.c86 static int ecb_crypt(struct skcipher_request *req, const u32 *expkey) in ecb_crypt() function
135 return ecb_crypt(req, ctx->enc_expkey); in ecb_encrypt()
143 return ecb_crypt(req, ctx->dec_expkey); in ecb_decrypt()
/Linux-v4.19/drivers/crypto/
Dpadlock-aes.c235 static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key, in ecb_crypt() function
265 ecb_crypt(input, output, key, control_word, count); in padlock_xcrypt_ecb()
307 ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1); in aes_encrypt()
316 ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1); in aes_decrypt()