examples/service_cores: add new sample application
[dpdk.git] / app / test-crypto-perf / cperf_test_vectors.h
index 7f9c4fa..8595570 100644 (file)
@@ -51,6 +51,11 @@ struct cperf_test_vector {
                uint16_t length;
        } auth_key;
 
+       struct {
+               uint8_t *data;
+               uint16_t length;
+       } aead_key;
+
        struct {
                uint8_t *data;
                uint16_t length;
@@ -61,6 +66,11 @@ struct cperf_test_vector {
                uint16_t length;
        } auth_iv;
 
+       struct {
+               uint8_t *data;
+               uint16_t length;
+       } aead_iv;
+
        struct {
                uint8_t *data;
                uint32_t length;
@@ -83,6 +93,8 @@ struct cperf_test_vector {
                uint32_t auth_length;
                uint32_t cipher_offset;
                uint32_t cipher_length;
+               uint32_t aead_offset;
+               uint32_t aead_length;
        } data;
 };