Searched refs:essiv_cipher (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | essiv.c | 54 struct crypto_cipher *essiv_cipher; member 89 crypto_cipher_clear_flags(tctx->essiv_cipher, CRYPTO_TFM_REQ_MASK); in essiv_skcipher_setkey() 90 crypto_cipher_set_flags(tctx->essiv_cipher, in essiv_skcipher_setkey() 93 err = crypto_cipher_setkey(tctx->essiv_cipher, salt, in essiv_skcipher_setkey() 96 crypto_cipher_get_flags(tctx->essiv_cipher) & in essiv_skcipher_setkey() 132 crypto_cipher_clear_flags(tctx->essiv_cipher, CRYPTO_TFM_REQ_MASK); in essiv_aead_setkey() 133 crypto_cipher_set_flags(tctx->essiv_cipher, crypto_aead_get_flags(tfm) & in essiv_aead_setkey() 135 err = crypto_cipher_setkey(tctx->essiv_cipher, salt, in essiv_aead_setkey() 137 crypto_aead_set_flags(tfm, crypto_cipher_get_flags(tctx->essiv_cipher) & in essiv_aead_setkey() 164 crypto_cipher_encrypt_one(tctx->essiv_cipher, req->iv, req->iv); in essiv_skcipher_crypt() [all …]
|