bus/fslmc: change argument to const to avoid warning
[dpdk.git] / drivers / crypto / openssl / rte_openssl_pmd_private.h
index e7af6e1..b7f7475 100644 (file)
@@ -36,6 +36,8 @@
 #include <openssl/evp.h>
 #include <openssl/des.h>
 
+#define CRYPTODEV_NAME_OPENSSL_PMD     crypto_openssl
+/**< Open SSL Crypto PMD device name */
 
 #define OPENSSL_LOG_ERR(fmt, args...) \
        RTE_LOG(ERR, CRYPTODEV, "[%s] %s() line %u: " fmt "\n",  \
@@ -113,6 +115,10 @@ struct openssl_session {
                uint16_t offset;
        } iv;
        /**< IV parameters */
+
+       enum rte_crypto_aead_algorithm aead_algo;
+       /**< AEAD algorithm */
+
        /** Cipher Parameters */
        struct {
                enum rte_crypto_cipher_operation direction;