Searched refs:encr (Results 1 – 6 of 6) sorted by relevance
| /f-stack/dpdk/drivers/net/atlantic/ |
| H A D | rte_pmd_atlantic.c | 13 uint8_t encr, uint8_t repl_prot) in rte_pmd_atl_macsec_enable() argument 24 return atl_macsec_enable(dev, encr, repl_prot); in rte_pmd_atl_macsec_enable()
|
| H A D | rte_pmd_atlantic.h | 36 int rte_pmd_atl_macsec_enable(uint16_t port, uint8_t encr, uint8_t repl_prot);
|
| H A D | atl_ethdev.h | 107 int atl_macsec_enable(struct rte_eth_dev *dev, uint8_t encr, uint8_t repl_prot);
|
| H A D | atl_ethdev.c | 858 uint8_t encr, uint8_t repl_prot) in atl_macsec_enable() argument 864 cfg->aq_macsec.common.encryption_enabled = encr; in atl_macsec_enable()
|
| /f-stack/dpdk/drivers/crypto/qat/ |
| H A D | qat_sym.h | 63 uint8_t *encr = encrypted_iv; in bpi_cipher_encrypt() local 70 for (; srclen != 0; --srclen, ++dst, ++src, ++encr) in bpi_cipher_encrypt() 71 *dst = *src ^ *encr; in bpi_cipher_encrypt()
|
| H A D | qat_sym.c | 28 uint8_t *encr = encrypted_iv; in bpi_cipher_decrypt() local 35 for (; srclen != 0; --srclen, ++dst, ++src, ++encr) in bpi_cipher_decrypt() 36 *dst = *src ^ *encr; in bpi_cipher_decrypt()
|