Searched refs:encrypted_iv (Results 1 – 3 of 3) sorted by relevance
| /f-stack/dpdk/drivers/crypto/qat/ |
| H A D | qat_sym.h | 62 uint8_t encrypted_iv[BPI_MAX_ENCR_IV_LEN]; in bpi_cipher_encrypt() local 63 uint8_t *encr = encrypted_iv; in bpi_cipher_encrypt() 66 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen) in bpi_cipher_encrypt()
|
| H A D | qat_sym.c | 27 uint8_t encrypted_iv[BPI_MAX_ENCR_IV_LEN]; in bpi_cipher_decrypt() local 28 uint8_t *encr = encrypted_iv; in bpi_cipher_decrypt() 31 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen) in bpi_cipher_decrypt()
|
| /f-stack/dpdk/drivers/crypto/openssl/ |
| H A D | rte_openssl_pmd.c | 957 uint8_t encrypted_iv[DES_BLOCK_SIZE]; in process_openssl_cipher_bpi_encrypt() local 960 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, in process_openssl_cipher_bpi_encrypt() 965 *(dst + i) = *(src + i) ^ (encrypted_iv[i]); in process_openssl_cipher_bpi_encrypt()
|