]> git.droids-corp.org - dpdk.git/blobdiff - app/test-crypto-perf/cperf_test_vectors.h
net/hns3: fix max packet size rollback in PF
[dpdk.git] / app / test-crypto-perf / cperf_test_vectors.h
index 6f10823ef3e01f41db1867d72bdd813a052d5873..70f2839cd63ff9a53adef7e446b71cb2a84bc639 100644 (file)
@@ -68,6 +68,13 @@ struct cperf_test_vector {
                uint32_t aead_offset;
                uint32_t aead_length;
        } data;
+
+       struct {
+               uint8_t *mod;
+               uint8_t *exp;
+               uint32_t mlen;
+               uint32_t elen;
+       } modex;
 };
 
 struct cperf_test_vector*
@@ -83,4 +90,9 @@ extern uint8_t aad[];
 
 extern uint8_t digest[2048];
 
+extern uint8_t perf_base[20];
+extern uint8_t perf_mod_p[129];
+extern uint8_t perf_mod_e[3];
+extern uint8_t perf_mod_result[sizeof(perf_mod_p)];
+
 #endif