Add test cases to validate EDDSA sign and verify ops,
as per RFC 8032.

Signed-off-by: Gowrishankar Muthukrishnan <gmuthukri...@marvell.com>
---
 app/test/test_cryptodev_asym.c               | 345 +++++++++++-
 app/test/test_cryptodev_ecdh_test_vectors.h  |  94 +++-
 app/test/test_cryptodev_ecdsa_test_vectors.h |   4 +
 app/test/test_cryptodev_eddsa_test_vectors.h | 556 +++++++++++++++++++
 4 files changed, 990 insertions(+), 9 deletions(-)
 create mode 100644 app/test/test_cryptodev_eddsa_test_vectors.h

diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
index f0b5d38543..893cc81770 100644
--- a/app/test/test_cryptodev_asym.c
+++ b/app/test/test_cryptodev_asym.c
@@ -20,6 +20,7 @@
 #include "test_cryptodev_ecdh_test_vectors.h"
 #include "test_cryptodev_ecdsa_test_vectors.h"
 #include "test_cryptodev_ecpm_test_vectors.h"
+#include "test_cryptodev_eddsa_test_vectors.h"
 #include "test_cryptodev_mod_test_vectors.h"
 #include "test_cryptodev_rsa_test_vectors.h"
 #include "test_cryptodev_sm2_test_vectors.h"
@@ -1631,6 +1632,9 @@ test_ecdsa_sign_verify_all_curve(void)
        const char *msg;
 
        for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
+               if (curve_id == ED25519 || curve_id == ED448)
+                       continue;
+
                status = test_ecdsa_sign_verify(curve_id);
                if (status == TEST_SUCCESS) {
                        msg = "succeeded";
@@ -1792,7 +1796,7 @@ test_ecpm_all_curve(void)
        const char *msg;
 
        for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
-               if (curve_id == SECP521R1_UA)
+               if (curve_id == SECP521R1_UA || curve_id == ED25519 || curve_id 
== ED448)
                        continue;
 
                status = test_ecpm(curve_id);
@@ -1966,10 +1970,18 @@ test_ecdh_pub_key_generate(enum curve curve_id)
        idx.type = RTE_CRYPTO_ASYM_XFORM_ECDH;
        capa = rte_cryptodev_asym_capability_get(dev_id, &idx);
        if (capa == NULL)
-               return -ENOTSUP;
+               return TEST_SKIPPED;
 
        if (!(capa->op_types & (1 <<  RTE_CRYPTO_ASYM_KE_PUB_KEY_GENERATE)))
-               return -ENOTSUP;
+               return TEST_SKIPPED;
+
+       if (curve_id == ED25519 || curve_id == ED448) {
+               /* Check EDDSA capability */
+               idx.type = RTE_CRYPTO_ASYM_XFORM_EDDSA;
+               capa = rte_cryptodev_asym_capability_get(dev_id, &idx);
+               if (capa == NULL)
+                       return TEST_SKIPPED;
+       }
 
        switch (curve_id) {
        case SECP192R1:
@@ -1987,6 +1999,12 @@ test_ecdh_pub_key_generate(enum curve curve_id)
        case SECP521R1:
                input_params = ecdh_param_secp521r1;
                break;
+       case ED25519:
+               input_params = ecdh_param_ed25519;
+               break;
+       case ED448:
+               input_params = ecdh_param_ed448;
+               break;
        default:
                RTE_LOG(ERR, USER1,
                                "line %u FAILED: %s", __LINE__,
@@ -2031,10 +2049,15 @@ test_ecdh_pub_key_generate(enum curve curve_id)
 
        /* Populate op with operational details */
        asym_op->ecdh.ke_type = RTE_CRYPTO_ASYM_KE_PUB_KEY_GENERATE;
+       if (curve_id == ED25519 || curve_id == ED448)
+               asym_op->flags |= RTE_CRYPTO_ASYM_FLAG_PUB_KEY_COMPRESSED;
 
        /* Init out buf */
        asym_op->ecdh.pub_key.x.data = output_buf_x;
-       asym_op->ecdh.pub_key.y.data = output_buf_y;
+       if (curve_id == ED25519 || curve_id == ED448)
+               asym_op->ecdh.pub_key.y.data = NULL;
+       else
+               asym_op->ecdh.pub_key.y.data = output_buf_y;
 
        RTE_LOG(DEBUG, USER1, "Process ASYM operation\n");
 
@@ -2073,8 +2096,13 @@ test_ecdh_pub_key_generate(enum curve curve_id)
        debug_hexdump(stdout, "qy:",
                asym_op->ecdh.pub_key.y.data, asym_op->ecdh.pub_key.y.length);
 
-       ret = verify_ecdh_secret(input_params.pubkey_qA_x.data,
+       if (curve_id == ED25519 || curve_id == ED448)
+               ret = memcmp(input_params.pubkey_qA_x.data, 
result_op->asym->ecdh.pub_key.x.data,
+                          result_op->asym->ecdh.pub_key.x.length);
+       else
+               ret = verify_ecdh_secret(input_params.pubkey_qA_x.data,
                                input_params.pubkey_qA_y.data, result_op);
+
        if (ret) {
                status = TEST_FAILED;
                RTE_LOG(ERR, USER1,
@@ -2484,7 +2512,7 @@ test_ecdh_all_curve(void)
        const char *msg;
 
        for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
-               if (curve_id == SECP521R1_UA)
+               if (curve_id == SECP521R1_UA || curve_id == ED25519 || curve_id 
== ED448)
                        continue;
 
                status = test_ecdh_priv_key_generate(curve_id);
@@ -2505,6 +2533,8 @@ test_ecdh_all_curve(void)
                status = test_ecdh_pub_key_generate(curve_id);
                if (status == TEST_SUCCESS) {
                        msg = "succeeded";
+               } else if (status == TEST_SKIPPED) {
+                       msg = "skipped";
                } else {
                        msg = "failed";
                        overall_status = status;
@@ -2514,7 +2544,7 @@ test_ecdh_all_curve(void)
        }
 
        for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
-               if (curve_id == SECP521R1_UA)
+               if (curve_id == SECP521R1_UA || curve_id == ED25519 || curve_id 
== ED448)
                        continue;
 
                status = test_ecdh_pub_key_verify(curve_id);
@@ -2529,7 +2559,7 @@ test_ecdh_all_curve(void)
        }
 
        for (curve_id = SECP192R1; curve_id < END_OF_CURVE_LIST; curve_id++) {
-               if (curve_id == SECP521R1_UA)
+               if (curve_id == SECP521R1_UA || curve_id == ED25519 || curve_id 
== ED448)
                        continue;
 
                status = test_ecdh_shared_secret(curve_id);
@@ -3167,6 +3197,303 @@ test_sm2_dec(void)
        return status;
 };
 
+static int
+test_eddsa_sign(struct crypto_testsuite_eddsa_params *input_params)
+{
+       struct crypto_testsuite_params_asym *ts_params = &testsuite_params;
+       enum rte_crypto_edward_instance instance = input_params->instance;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       struct rte_mempool *op_mpool = ts_params->op_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_crypto_op *result_op = NULL;
+       uint8_t output_buf_r[TEST_DATA_SIZE];
+       struct rte_crypto_asym_xform xform;
+       struct rte_crypto_asym_op *asym_op;
+       struct rte_crypto_op *op = NULL;
+       int ret, status = TEST_FAILED;
+       void *sess = NULL;
+       bool ctx = false;
+
+       if (instance == RTE_CRYPTO_EDCURVE_25519CTX)
+               ctx = true;
+
+       /* Setup crypto op data structure */
+       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
+       if (op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to allocate asymmetric crypto "
+                               "operation struct\n");
+               status = TEST_FAILED;
+               goto exit;
+       }
+
+       asym_op = op->asym;
+
+       /* Setup asym xform */
+       xform.next = NULL;
+       xform.xform_type = RTE_CRYPTO_ASYM_XFORM_EDDSA;
+       xform.ec.curve_id = input_params->curve;
+       xform.ec.pkey.data = input_params->pkey.data;
+       xform.ec.pkey.length = input_params->pkey.length;
+       xform.ec.q.x.data = input_params->pubkey.data;
+       xform.ec.q.x.length = input_params->pubkey.length;
+
+       ret = rte_cryptodev_asym_session_create(dev_id, &xform, sess_mpool, 
&sess);
+       if (ret < 0) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Session creation failed\n");
+               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
+               goto exit;
+       }
+
+       /* Attach asymmetric crypto session to crypto operations */
+       rte_crypto_op_attach_asym_session(op, sess);
+
+       /* Compute sign */
+
+       /* Populate op with operational details */
+       asym_op->eddsa.op_type = RTE_CRYPTO_ASYM_OP_SIGN;
+       asym_op->eddsa.instance = input_params->instance;
+       asym_op->eddsa.message.data = input_params->message.data;
+       asym_op->eddsa.message.length = input_params->message.length;
+       asym_op->eddsa.context.length = 0;
+       if (ctx) {
+               asym_op->eddsa.context.data = input_params->context.data;
+               asym_op->eddsa.context.length = input_params->context.length;
+       }
+
+       /* Init out buf */
+       asym_op->eddsa.sign.data = output_buf_r;
+
+       RTE_LOG(DEBUG, USER1, "Process ASYM operation\n");
+
+       /* Process crypto operation */
+       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Error sending packet for operation\n");
+               goto exit;
+       }
+
+       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
+               rte_pause();
+
+       if (result_op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               goto exit;
+       }
+
+       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               goto exit;
+       }
+
+       asym_op = result_op->asym;
+
+       debug_hexdump(stdout, "sign:",
+                       asym_op->eddsa.sign.data, asym_op->eddsa.sign.length);
+
+       /* Verify sign (by comparison). */
+       if (memcmp(input_params->sign.data, asym_op->eddsa.sign.data,
+                          asym_op->eddsa.sign.length) != 0) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "EDDSA sign failed.\n");
+               goto exit;
+       }
+
+       status = TEST_SUCCESS;
+exit:
+       if (sess != NULL)
+               rte_cryptodev_asym_session_free(dev_id, sess);
+       rte_crypto_op_free(op);
+       return status;
+};
+
+static int
+test_eddsa_verify(struct crypto_testsuite_eddsa_params *input_params)
+{
+       struct crypto_testsuite_params_asym *ts_params = &testsuite_params;
+       enum rte_crypto_edward_instance instance = input_params->instance;
+       struct rte_mempool *sess_mpool = ts_params->session_mpool;
+       struct rte_mempool *op_mpool = ts_params->op_mpool;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       struct rte_crypto_op *result_op = NULL;
+       struct rte_crypto_asym_xform xform;
+       struct rte_crypto_asym_op *asym_op;
+       struct rte_crypto_op *op = NULL;
+       int ret, status = TEST_FAILED;
+       void *sess = NULL;
+       bool ctx = false;
+
+       if (instance == RTE_CRYPTO_EDCURVE_25519CTX)
+               ctx = true;
+
+       /* Setup crypto op data structure */
+       op = rte_crypto_op_alloc(op_mpool, RTE_CRYPTO_OP_TYPE_ASYMMETRIC);
+       if (op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to allocate asymmetric crypto "
+                               "operation struct\n");
+               goto exit;
+       }
+
+       asym_op = op->asym;
+
+       /* Setup asym xform */
+       xform.next = NULL;
+       xform.xform_type = RTE_CRYPTO_ASYM_XFORM_EDDSA;
+       xform.ec.curve_id = input_params->curve;
+       xform.ec.pkey.length = 0;
+       xform.ec.q.x.data = input_params->pubkey.data;
+       xform.ec.q.x.length = input_params->pubkey.length;
+
+       ret = rte_cryptodev_asym_session_create(dev_id, &xform, sess_mpool, 
&sess);
+       if (ret < 0) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Session creation failed\n");
+               status = (ret == -ENOTSUP) ? TEST_SKIPPED : TEST_FAILED;
+               goto exit;
+       }
+
+       /* Attach asymmetric crypto session to crypto operations */
+       rte_crypto_op_attach_asym_session(op, sess);
+
+       /* Compute sign */
+
+       /* Populate op with operational details */
+       asym_op->eddsa.op_type = RTE_CRYPTO_ASYM_OP_VERIFY;
+       asym_op->eddsa.instance = input_params->instance;
+       asym_op->eddsa.message.data = input_params->message.data;
+       asym_op->eddsa.message.length = input_params->message.length;
+       asym_op->eddsa.context.length = 0;
+       if (ctx) {
+               asym_op->eddsa.context.data = input_params->context.data;
+               asym_op->eddsa.context.length = input_params->context.length;
+       }
+
+       asym_op->eddsa.sign.data = input_params->sign.data;
+       asym_op->eddsa.sign.length = input_params->sign.length;
+
+       RTE_LOG(DEBUG, USER1, "Process ASYM operation\n");
+
+       /* Process crypto operation */
+       if (rte_cryptodev_enqueue_burst(dev_id, 0, &op, 1) != 1) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Error sending packet for operation\n");
+               goto exit;
+       }
+
+       while (rte_cryptodev_dequeue_burst(dev_id, 0, &result_op, 1) == 0)
+               rte_pause();
+
+       if (result_op == NULL) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               goto exit;
+       }
+
+       if (result_op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
+               RTE_LOG(ERR, USER1,
+                               "line %u FAILED: %s", __LINE__,
+                               "Failed to process asym crypto op\n");
+               goto exit;
+       }
+
+       status = TEST_SUCCESS;
+exit:
+       if (sess != NULL)
+               rte_cryptodev_asym_session_free(dev_id, sess);
+       rte_crypto_op_free(op);
+       return status;
+};
+
+static int
+test_eddsa_sign_verify_all_curve(void)
+{
+       struct crypto_testsuite_params_asym *ts_params = &testsuite_params;
+       const struct rte_cryptodev_asymmetric_xform_capability *capa;
+       struct crypto_testsuite_eddsa_params input_params;
+       struct rte_cryptodev_asym_capability_idx idx;
+       int status, overall_status = TEST_SUCCESS;
+       uint8_t dev_id = ts_params->valid_devs[0];
+       uint8_t i, tc = 0;
+       const char *msg;
+
+       /* Check EDDSA capability */
+       idx.type = RTE_CRYPTO_ASYM_XFORM_EDDSA;
+       capa = rte_cryptodev_asym_capability_get(dev_id, &idx);
+       if (capa == NULL)
+               return TEST_SKIPPED;
+
+       /* Sign tests */
+       for (i = 0; i < RTE_DIM(eddsa_test_params); i++) {
+               memcpy(&input_params, &eddsa_test_params[i],
+                               sizeof(input_params));
+               status = test_eddsa_sign(&input_params);
+               if (status == TEST_SUCCESS) {
+                       msg = "succeeded";
+               } else {
+                       msg = "failed";
+                       overall_status = status;
+               }
+               printf("  %u) TestCase Sign %s  %s\n",
+                      tc++, input_params.description, msg);
+       }
+
+       /* Verify tests */
+       for (i = 0; i < RTE_DIM(eddsa_test_params); i++) {
+               memcpy(&input_params, &eddsa_test_params[i],
+                               sizeof(input_params));
+               status = test_eddsa_verify(&input_params);
+               if (status == TEST_SUCCESS) {
+                       msg = "succeeded";
+               } else {
+                       msg = "failed";
+                       overall_status = status;
+               }
+               printf("  %u) TestCase Verify %s  %s\n",
+                      tc++, input_params.description, msg);
+       }
+
+       /* Negative tests */
+       memcpy(&input_params, &eddsa_test_params[1],
+                       sizeof(input_params));
+       input_params.pubkey.data[0] ^= 0x01;
+
+       status = test_eddsa_sign(&input_params);
+       if (status == TEST_FAILED) {
+               msg = "succeeded";
+       } else {
+               msg = "failed";
+               overall_status = status;
+       }
+       printf("  %u) TestCase Negative Sign %s  %s\n",
+                       tc++, input_params.description, msg);
+
+       status = test_eddsa_verify(&input_params);
+       if (status == TEST_FAILED) {
+               msg = "succeeded";
+       } else {
+               msg = "failed";
+               overall_status = status;
+       }
+       printf("  %u) TestCase Negative Verify %s  %s\n",
+                       tc++, input_params.description, msg);
+
+       return overall_status;
+}
+
 static int send_one(void)
 {
        int ticks = 0;
@@ -3543,6 +3870,7 @@ static struct unit_test_suite 
cryptodev_openssl_asym_testsuite  = {
                        "Modex Group 18 test",
                        ut_setup_asym, ut_teardown_asym,
                        modular_exponentiation, &modex_group_test_cases[5]),
+               TEST_CASE_ST(ut_setup_asym, ut_teardown_asym, 
test_eddsa_sign_verify_all_curve),
                TEST_CASES_END() /**< NULL terminate unit test array */
        }
 };
@@ -3634,6 +3962,7 @@ static struct unit_test_suite 
cryptodev_octeontx_asym_testsuite  = {
                                test_ecdh_all_curve),
                TEST_CASE_ST(ut_setup_asym, ut_teardown_asym,
                                test_ecpm_all_curve),
+               TEST_CASE_ST(ut_setup_asym, ut_teardown_asym, 
test_eddsa_sign_verify_all_curve),
                TEST_CASES_END() /**< NULL terminate unit test array */
        }
 };
diff --git a/app/test/test_cryptodev_ecdh_test_vectors.h 
b/app/test/test_cryptodev_ecdh_test_vectors.h
index b577c179c8..36f92b223f 100644
--- a/app/test/test_cryptodev_ecdh_test_vectors.h
+++ b/app/test/test_cryptodev_ecdh_test_vectors.h
@@ -553,4 +553,96 @@ struct crypto_testsuite_ecdh_params ecdh_param_secp521r1 = 
{
        .curve = RTE_CRYPTO_EC_GROUP_SECP521R1
 };
 
-#endif /* __TEST_CRYPTODEV_ECDSA_TEST_VECTORS_H__ */
+/** ED25519 test vector */
+
+static uint8_t privkey_ed25519[] = {
+       0x83, 0x3f, 0xe6, 0x24, 0x09, 0x23, 0x7b, 0x9d,
+       0x62, 0xec, 0x77, 0x58, 0x75, 0x20, 0x91, 0x1e,
+       0x9a, 0x75, 0x9c, 0xec, 0x1d, 0x19, 0x75, 0x5b,
+       0x7d, 0xa9, 0x01, 0xb9, 0x6d, 0xca, 0x3d, 0x42
+};
+
+static uint8_t pubkey_ed25519[] = {
+       0xec, 0x17, 0x2b, 0x93, 0xad, 0x5e, 0x56, 0x3b,
+       0xf4, 0x93, 0x2c, 0x70, 0xe1, 0x24, 0x50, 0x34,
+       0xc3, 0x54, 0x67, 0xef, 0x2e, 0xfd, 0x4d, 0x64,
+       0xeb, 0xf8, 0x19, 0x68, 0x34, 0x67, 0xe2, 0xbf
+};
+
+/** ECDH ED25519 elliptic curve param */
+
+struct crypto_testsuite_ecdh_params ecdh_param_ed25519 = {
+       .pubkey_qA_x = {
+               .data = pubkey_ed25519,
+               .length = sizeof(pubkey_ed25519),
+       },
+       .pubkey_qA_y = {
+       },
+       .pubkey_qB_x = {
+       },
+       .pubkey_qB_y = {
+       },
+       .pkey_A = {
+               .data = privkey_ed25519,
+               .length = sizeof(privkey_ed25519),
+       },
+       .pkey_B = {
+       },
+       .secret_x = {
+       },
+       .secret_y = {
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519
+};
+
+/** ED448 test vector */
+
+static uint8_t privkey_ed448[] = {
+       0xd6, 0x5d, 0xf3, 0x41, 0xad, 0x13, 0xe0, 0x08,
+       0x56, 0x76, 0x88, 0xba, 0xed, 0xda, 0x8e, 0x9d,
+       0xcd, 0xc1, 0x7d, 0xc0, 0x24, 0x97, 0x4e, 0xa5,
+       0xb4, 0x22, 0x7b, 0x65, 0x30, 0xe3, 0x39, 0xbf,
+       0xf2, 0x1f, 0x99, 0xe6, 0x8c, 0xa6, 0x96, 0x8f,
+       0x3c, 0xca, 0x6d, 0xfe, 0x0f, 0xb9, 0xf4, 0xfa,
+       0xb4, 0xfa, 0x13, 0x5d, 0x55, 0x42, 0xea, 0x3f,
+       0x01
+};
+
+static uint8_t pubkey_ed448[] = {
+       0xdf, 0x97, 0x05, 0xf5, 0x8e, 0xdb, 0xab, 0x80,
+       0x2c, 0x7f, 0x83, 0x63, 0xcf, 0xe5, 0x56, 0x0a,
+       0xb1, 0xc6, 0x13, 0x2c, 0x20, 0xa9, 0xf1, 0xdd,
+       0x16, 0x34, 0x83, 0xa2, 0x6f, 0x8a, 0xc5, 0x3a,
+       0x39, 0xd6, 0x80, 0x8b, 0xf4, 0xa1, 0xdf, 0xbd,
+       0x26, 0x1b, 0x09, 0x9b, 0xb0, 0x3b, 0x3f, 0xb5,
+       0x09, 0x06, 0xcb, 0x28, 0xbd, 0x8a, 0x08, 0x1f,
+       0x00
+};
+
+/** ECDH ED448 elliptic curve param */
+
+struct crypto_testsuite_ecdh_params ecdh_param_ed448 = {
+       .pubkey_qA_x = {
+               .data = pubkey_ed448,
+               .length = sizeof(pubkey_ed448),
+       },
+       .pubkey_qA_y = {
+       },
+       .pubkey_qB_x = {
+       },
+       .pubkey_qB_y = {
+       },
+       .pkey_A = {
+               .data = privkey_ed448,
+               .length = sizeof(privkey_ed448),
+       },
+       .pkey_B = {
+       },
+       .secret_x = {
+       },
+       .secret_y = {
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED448
+};
+
+#endif /* __TEST_CRYPTODEV_ECDH_TEST_VECTORS_H__ */
diff --git a/app/test/test_cryptodev_ecdsa_test_vectors.h 
b/app/test/test_cryptodev_ecdsa_test_vectors.h
index f1477639ba..636a1ab1b2 100644
--- a/app/test/test_cryptodev_ecdsa_test_vectors.h
+++ b/app/test/test_cryptodev_ecdsa_test_vectors.h
@@ -15,6 +15,8 @@ enum curve {
        SECP384R1,
        SECP521R1,
        SECP521R1_UA,
+       ED25519,
+       ED448,
        END_OF_CURVE_LIST
 };
 
@@ -24,6 +26,8 @@ const char *curve[] = {"SECP192R1",
                       "SECP384R1",
                       "SECP521R1",
                       "SECP521R1(unaligned)",
+                      "ED25519",
+                      "ED448",
 };
 
 struct crypto_testsuite_ecdsa_params {
diff --git a/app/test/test_cryptodev_eddsa_test_vectors.h 
b/app/test/test_cryptodev_eddsa_test_vectors.h
new file mode 100644
index 0000000000..47e5355ec7
--- /dev/null
+++ b/app/test/test_cryptodev_eddsa_test_vectors.h
@@ -0,0 +1,556 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(C) 2024 Marvell.
+ */
+
+#ifndef __TEST_CRYPTODEV_EDDSA_TEST_VECTORS_H__
+#define __TEST_CRYPTODEV_EDDSA_TEST_VECTORS_H__
+
+#include "rte_crypto_asym.h"
+
+#define DATA_SIZE 1024
+
+struct crypto_testsuite_eddsa_params {
+       enum rte_crypto_edward_instance instance;
+       enum rte_crypto_curve_id curve;
+       const char *description;
+       struct {
+               uint8_t data[DATA_SIZE];
+               uint16_t length;
+       } pubkey;
+       struct {
+               uint8_t data[DATA_SIZE];
+               uint16_t length;
+       } pkey;
+       struct {
+               uint8_t data[DATA_SIZE];
+               uint16_t length;
+       } sign;
+       struct {
+               uint8_t data[DATA_SIZE];
+               uint16_t length;
+       } message;
+       struct {
+               uint8_t data[DATA_SIZE];
+               uint16_t length;
+       } context;
+};
+
+/** EDDSA curve test params (RFC 8032) */
+static const struct
+crypto_testsuite_eddsa_params eddsa_test_params[] = {
+{
+       .description = "EDDSA 25519 (msg=0)",
+       .pkey = {
+               .data = {
+                       0x9d, 0x61, 0xb1, 0x9d, 0xef, 0xfd, 0x5a, 0x60,
+                       0xba, 0x84, 0x4a, 0xf4, 0x92, 0xec, 0x2c, 0xc4,
+                       0x44, 0x49, 0xc5, 0x69, 0x7b, 0x32, 0x69, 0x19,
+                       0x70, 0x3b, 0xac, 0x03, 0x1c, 0xae, 0x7f, 0x60
+               },
+               .length = 32,
+       },
+       .pubkey = {
+               .data = {
+                       0xd7, 0x5a, 0x98, 0x01, 0x82, 0xb1, 0x0a, 0xb7,
+                       0xd5, 0x4b, 0xfe, 0xd3, 0xc9, 0x64, 0x07, 0x3a,
+                       0x0e, 0xe1, 0x72, 0xf3, 0xda, 0xa6, 0x23, 0x25,
+                       0xaf, 0x02, 0x1a, 0x68, 0xf7, 0x07, 0x51, 0x1a
+               },
+               .length = 32,
+       },
+       .sign = {
+               .data = {
+                       0xe5, 0x56, 0x43, 0x00, 0xc3, 0x60, 0xac, 0x72,
+                       0x90, 0x86, 0xe2, 0xcc, 0x80, 0x6e, 0x82, 0x8a,
+                       0x84, 0x87, 0x7f, 0x1e, 0xb8, 0xe5, 0xd9, 0x74,
+                       0xd8, 0x73, 0xe0, 0x65, 0x22, 0x49, 0x01, 0x55,
+                       0x5f, 0xb8, 0x82, 0x15, 0x90, 0xa3, 0x3b, 0xac,
+                       0xc6, 0x1e, 0x39, 0x70, 0x1c, 0xf9, 0xb4, 0x6b,
+                       0xd2, 0x5b, 0xf5, 0xf0, 0x59, 0x5b, 0xbe, 0x24,
+                       0x65, 0x51, 0x41, 0x43, 0x8e, 0x7a, 0x10, 0x0b
+               },
+               .length = 64,
+       },
+       .message = {
+               .data = {
+               },
+               .length = 0,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519,
+       .instance = RTE_CRYPTO_EDCURVE_25519
+},
+{
+       .description = "EDDSA 25519 (msg=1)",
+       .pkey = {
+               .data = {
+                       0x4c, 0xcd, 0x08, 0x9b, 0x28, 0xff, 0x96, 0xda,
+                       0x9d, 0xb6, 0xc3, 0x46, 0xec, 0x11, 0x4e, 0x0f,
+                       0x5b, 0x8a, 0x31, 0x9f, 0x35, 0xab, 0xa6, 0x24,
+                       0xda, 0x8c, 0xf6, 0xed, 0x4f, 0xb8, 0xa6, 0xfb,
+               },
+               .length = 32,
+       },
+       .pubkey = {
+               .data = {
+                       0x3d, 0x40, 0x17, 0xc3, 0xe8, 0x43, 0x89, 0x5a,
+                       0x92, 0xb7, 0x0a, 0xa7, 0x4d, 0x1b, 0x7e, 0xbc,
+                       0x9c, 0x98, 0x2c, 0xcf, 0x2e, 0xc4, 0x96, 0x8c,
+                       0xc0, 0xcd, 0x55, 0xf1, 0x2a, 0xf4, 0x66, 0x0c,
+               },
+               .length = 32,
+       },
+       .sign = {
+               .data = {
+                       0x92, 0xa0, 0x09, 0xa9, 0xf0, 0xd4, 0xca, 0xb8,
+                       0x72, 0x0e, 0x82, 0x0b, 0x5f, 0x64, 0x25, 0x40,
+                       0xa2, 0xb2, 0x7b, 0x54, 0x16, 0x50, 0x3f, 0x8f,
+                       0xb3, 0x76, 0x22, 0x23, 0xeb, 0xdb, 0x69, 0xda,
+                       0x08, 0x5a, 0xc1, 0xe4, 0x3e, 0x15, 0x99, 0x6e,
+                       0x45, 0x8f, 0x36, 0x13, 0xd0, 0xf1, 0x1d, 0x8c,
+                       0x38, 0x7b, 0x2e, 0xae, 0xb4, 0x30, 0x2a, 0xee,
+                       0xb0, 0x0d, 0x29, 0x16, 0x12, 0xbb, 0x0c, 0x00,
+               },
+               .length = 64,
+       },
+       .message = {
+               .data = {
+                       0x72
+               },
+               .length = 1,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519,
+       .instance = RTE_CRYPTO_EDCURVE_25519
+},
+{
+       .description = "EDDSA 25519 (msg=1023)",
+       .pkey = {
+               .data = {
+                       0xf5, 0xe5, 0x76, 0x7c, 0xf1, 0x53, 0x31, 0x95,
+                       0x17, 0x63, 0x0f, 0x22, 0x68, 0x76, 0xb8, 0x6c,
+                       0x81, 0x60, 0xcc, 0x58, 0x3b, 0xc0, 0x13, 0x74,
+                       0x4c, 0x6b, 0xf2, 0x55, 0xf5, 0xcc, 0x0e, 0xe5
+               },
+               .length = 32,
+       },
+       .pubkey = {
+               .data = {
+                       0x27, 0x81, 0x17, 0xfc, 0x14, 0x4c, 0x72, 0x34,
+                       0x0f, 0x67, 0xd0, 0xf2, 0x31, 0x6e, 0x83, 0x86,
+                       0xce, 0xff, 0xbf, 0x2b, 0x24, 0x28, 0xc9, 0xc5,
+                       0x1f, 0xef, 0x7c, 0x59, 0x7f, 0x1d, 0x42, 0x6e
+               },
+               .length = 32,
+       },
+       .sign = {
+               .data = {
+                       0x0a, 0xab, 0x4c, 0x90, 0x05, 0x01, 0xb3, 0xe2,
+                       0x4d, 0x7c, 0xdf, 0x46, 0x63, 0x32, 0x6a, 0x3a,
+                       0x87, 0xdf, 0x5e, 0x48, 0x43, 0xb2, 0xcb, 0xdb,
+                       0x67, 0xcb, 0xf6, 0xe4, 0x60, 0xfe, 0xc3, 0x50,
+                       0xaa, 0x53, 0x71, 0xb1, 0x50, 0x8f, 0x9f, 0x45,
+                       0x28, 0xec, 0xea, 0x23, 0xc4, 0x36, 0xd9, 0x4b,
+                       0x5e, 0x8f, 0xcd, 0x4f, 0x68, 0x1e, 0x30, 0xa6,
+                       0xac, 0x00, 0xa9, 0x70, 0x4a, 0x18, 0x8a, 0x03
+               },
+               .length = 64,
+       },
+       .message = {
+               .data = {
+                       0x08, 0xb8, 0xb2, 0xb7, 0x33, 0x42, 0x42, 0x43,
+                       0x76, 0x0f, 0xe4, 0x26, 0xa4, 0xb5, 0x49, 0x08,
+                       0x63, 0x21, 0x10, 0xa6, 0x6c, 0x2f, 0x65, 0x91,
+                       0xea, 0xbd, 0x33, 0x45, 0xe3, 0xe4, 0xeb, 0x98,
+                       0xfa, 0x6e, 0x26, 0x4b, 0xf0, 0x9e, 0xfe, 0x12,
+                       0xee, 0x50, 0xf8, 0xf5, 0x4e, 0x9f, 0x77, 0xb1,
+                       0xe3, 0x55, 0xf6, 0xc5, 0x05, 0x44, 0xe2, 0x3f,
+                       0xb1, 0x43, 0x3d, 0xdf, 0x73, 0xbe, 0x84, 0xd8,
+                       0x79, 0xde, 0x7c, 0x00, 0x46, 0xdc, 0x49, 0x96,
+                       0xd9, 0xe7, 0x73, 0xf4, 0xbc, 0x9e, 0xfe, 0x57,
+                       0x38, 0x82, 0x9a, 0xdb, 0x26, 0xc8, 0x1b, 0x37,
+                       0xc9, 0x3a, 0x1b, 0x27, 0x0b, 0x20, 0x32, 0x9d,
+                       0x65, 0x86, 0x75, 0xfc, 0x6e, 0xa5, 0x34, 0xe0,
+                       0x81, 0x0a, 0x44, 0x32, 0x82, 0x6b, 0xf5, 0x8c,
+                       0x94, 0x1e, 0xfb, 0x65, 0xd5, 0x7a, 0x33, 0x8b,
+                       0xbd, 0x2e, 0x26, 0x64, 0x0f, 0x89, 0xff, 0xbc,
+                       0x1a, 0x85, 0x8e, 0xfc, 0xb8, 0x55, 0x0e, 0xe3,
+                       0xa5, 0xe1, 0x99, 0x8b, 0xd1, 0x77, 0xe9, 0x3a,
+                       0x73, 0x63, 0xc3, 0x44, 0xfe, 0x6b, 0x19, 0x9e,
+                       0xe5, 0xd0, 0x2e, 0x82, 0xd5, 0x22, 0xc4, 0xfe,
+                       0xba, 0x15, 0x45, 0x2f, 0x80, 0x28, 0x8a, 0x82,
+                       0x1a, 0x57, 0x91, 0x16, 0xec, 0x6d, 0xad, 0x2b,
+                       0x3b, 0x31, 0x0d, 0xa9, 0x03, 0x40, 0x1a, 0xa6,
+                       0x21, 0x00, 0xab, 0x5d, 0x1a, 0x36, 0x55, 0x3e,
+                       0x06, 0x20, 0x3b, 0x33, 0x89, 0x0c, 0xc9, 0xb8,
+                       0x32, 0xf7, 0x9e, 0xf8, 0x05, 0x60, 0xcc, 0xb9,
+                       0xa3, 0x9c, 0xe7, 0x67, 0x96, 0x7e, 0xd6, 0x28,
+                       0xc6, 0xad, 0x57, 0x3c, 0xb1, 0x16, 0xdb, 0xef,
+                       0xef, 0xd7, 0x54, 0x99, 0xda, 0x96, 0xbd, 0x68,
+                       0xa8, 0xa9, 0x7b, 0x92, 0x8a, 0x8b, 0xbc, 0x10,
+                       0x3b, 0x66, 0x21, 0xfc, 0xde, 0x2b, 0xec, 0xa1,
+                       0x23, 0x1d, 0x20, 0x6b, 0xe6, 0xcd, 0x9e, 0xc7,
+                       0xaf, 0xf6, 0xf6, 0xc9, 0x4f, 0xcd, 0x72, 0x04,
+                       0xed, 0x34, 0x55, 0xc6, 0x8c, 0x83, 0xf4, 0xa4,
+                       0x1d, 0xa4, 0xaf, 0x2b, 0x74, 0xef, 0x5c, 0x53,
+                       0xf1, 0xd8, 0xac, 0x70, 0xbd, 0xcb, 0x7e, 0xd1,
+                       0x85, 0xce, 0x81, 0xbd, 0x84, 0x35, 0x9d, 0x44,
+                       0x25, 0x4d, 0x95, 0x62, 0x9e, 0x98, 0x55, 0xa9,
+                       0x4a, 0x7c, 0x19, 0x58, 0xd1, 0xf8, 0xad, 0xa5,
+                       0xd0, 0x53, 0x2e, 0xd8, 0xa5, 0xaa, 0x3f, 0xb2,
+                       0xd1, 0x7b, 0xa7, 0x0e, 0xb6, 0x24, 0x8e, 0x59,
+                       0x4e, 0x1a, 0x22, 0x97, 0xac, 0xbb, 0xb3, 0x9d,
+                       0x50, 0x2f, 0x1a, 0x8c, 0x6e, 0xb6, 0xf1, 0xce,
+                       0x22, 0xb3, 0xde, 0x1a, 0x1f, 0x40, 0xcc, 0x24,
+                       0x55, 0x41, 0x19, 0xa8, 0x31, 0xa9, 0xaa, 0xd6,
+                       0x07, 0x9c, 0xad, 0x88, 0x42, 0x5d, 0xe6, 0xbd,
+                       0xe1, 0xa9, 0x18, 0x7e, 0xbb, 0x60, 0x92, 0xcf,
+                       0x67, 0xbf, 0x2b, 0x13, 0xfd, 0x65, 0xf2, 0x70,
+                       0x88, 0xd7, 0x8b, 0x7e, 0x88, 0x3c, 0x87, 0x59,
+                       0xd2, 0xc4, 0xf5, 0xc6, 0x5a, 0xdb, 0x75, 0x53,
+                       0x87, 0x8a, 0xd5, 0x75, 0xf9, 0xfa, 0xd8, 0x78,
+                       0xe8, 0x0a, 0x0c, 0x9b, 0xa6, 0x3b, 0xcb, 0xcc,
+                       0x27, 0x32, 0xe6, 0x94, 0x85, 0xbb, 0xc9, 0xc9,
+                       0x0b, 0xfb, 0xd6, 0x24, 0x81, 0xd9, 0x08, 0x9b,
+                       0xec, 0xcf, 0x80, 0xcf, 0xe2, 0xdf, 0x16, 0xa2,
+                       0xcf, 0x65, 0xbd, 0x92, 0xdd, 0x59, 0x7b, 0x07,
+                       0x07, 0xe0, 0x91, 0x7a, 0xf4, 0x8b, 0xbb, 0x75,
+                       0xfe, 0xd4, 0x13, 0xd2, 0x38, 0xf5, 0x55, 0x5a,
+                       0x7a, 0x56, 0x9d, 0x80, 0xc3, 0x41, 0x4a, 0x8d,
+                       0x08, 0x59, 0xdc, 0x65, 0xa4, 0x61, 0x28, 0xba,
+                       0xb2, 0x7a, 0xf8, 0x7a, 0x71, 0x31, 0x4f, 0x31,
+                       0x8c, 0x78, 0x2b, 0x23, 0xeb, 0xfe, 0x80, 0x8b,
+                       0x82, 0xb0, 0xce, 0x26, 0x40, 0x1d, 0x2e, 0x22,
+                       0xf0, 0x4d, 0x83, 0xd1, 0x25, 0x5d, 0xc5, 0x1a,
+                       0xdd, 0xd3, 0xb7, 0x5a, 0x2b, 0x1a, 0xe0, 0x78,
+                       0x45, 0x04, 0xdf, 0x54, 0x3a, 0xf8, 0x96, 0x9b,
+                       0xe3, 0xea, 0x70, 0x82, 0xff, 0x7f, 0xc9, 0x88,
+                       0x8c, 0x14, 0x4d, 0xa2, 0xaf, 0x58, 0x42, 0x9e,
+                       0xc9, 0x60, 0x31, 0xdb, 0xca, 0xd3, 0xda, 0xd9,
+                       0xaf, 0x0d, 0xcb, 0xaa, 0xaf, 0x26, 0x8c, 0xb8,
+                       0xfc, 0xff, 0xea, 0xd9, 0x4f, 0x3c, 0x7c, 0xa4,
+                       0x95, 0xe0, 0x56, 0xa9, 0xb4, 0x7a, 0xcd, 0xb7,
+                       0x51, 0xfb, 0x73, 0xe6, 0x66, 0xc6, 0xc6, 0x55,
+                       0xad, 0xe8, 0x29, 0x72, 0x97, 0xd0, 0x7a, 0xd1,
+                       0xba, 0x5e, 0x43, 0xf1, 0xbc, 0xa3, 0x23, 0x01,
+                       0x65, 0x13, 0x39, 0xe2, 0x29, 0x04, 0xcc, 0x8c,
+                       0x42, 0xf5, 0x8c, 0x30, 0xc0, 0x4a, 0xaf, 0xdb,
+                       0x03, 0x8d, 0xda, 0x08, 0x47, 0xdd, 0x98, 0x8d,
+                       0xcd, 0xa6, 0xf3, 0xbf, 0xd1, 0x5c, 0x4b, 0x4c,
+                       0x45, 0x25, 0x00, 0x4a, 0xa0, 0x6e, 0xef, 0xf8,
+                       0xca, 0x61, 0x78, 0x3a, 0xac, 0xec, 0x57, 0xfb,
+                       0x3d, 0x1f, 0x92, 0xb0, 0xfe, 0x2f, 0xd1, 0xa8,
+                       0x5f, 0x67, 0x24, 0x51, 0x7b, 0x65, 0xe6, 0x14,
+                       0xad, 0x68, 0x08, 0xd6, 0xf6, 0xee, 0x34, 0xdf,
+                       0xf7, 0x31, 0x0f, 0xdc, 0x82, 0xae, 0xbf, 0xd9,
+                       0x04, 0xb0, 0x1e, 0x1d, 0xc5, 0x4b, 0x29, 0x27,
+                       0x09, 0x4b, 0x2d, 0xb6, 0x8d, 0x6f, 0x90, 0x3b,
+                       0x68, 0x40, 0x1a, 0xde, 0xbf, 0x5a, 0x7e, 0x08,
+                       0xd7, 0x8f, 0xf4, 0xef, 0x5d, 0x63, 0x65, 0x3a,
+                       0x65, 0x04, 0x0c, 0xf9, 0xbf, 0xd4, 0xac, 0xa7,
+                       0x98, 0x4a, 0x74, 0xd3, 0x71, 0x45, 0x98, 0x67,
+                       0x80, 0xfc, 0x0b, 0x16, 0xac, 0x45, 0x16, 0x49,
+                       0xde, 0x61, 0x88, 0xa7, 0xdb, 0xdf, 0x19, 0x1f,
+                       0x64, 0xb5, 0xfc, 0x5e, 0x2a, 0xb4, 0x7b, 0x57,
+                       0xf7, 0xf7, 0x27, 0x6c, 0xd4, 0x19, 0xc1, 0x7a,
+                       0x3c, 0xa8, 0xe1, 0xb9, 0x39, 0xae, 0x49, 0xe4,
+                       0x88, 0xac, 0xba, 0x6b, 0x96, 0x56, 0x10, 0xb5,
+                       0x48, 0x01, 0x09, 0xc8, 0xb1, 0x7b, 0x80, 0xe1,
+                       0xb7, 0xb7, 0x50, 0xdf, 0xc7, 0x59, 0x8d, 0x5d,
+                       0x50, 0x11, 0xfd, 0x2d, 0xcc, 0x56, 0x00, 0xa3,
+                       0x2e, 0xf5, 0xb5, 0x2a, 0x1e, 0xcc, 0x82, 0x0e,
+                       0x30, 0x8a, 0xa3, 0x42, 0x72, 0x1a, 0xac, 0x09,
+                       0x43, 0xbf, 0x66, 0x86, 0xb6, 0x4b, 0x25, 0x79,
+                       0x37, 0x65, 0x04, 0xcc, 0xc4, 0x93, 0xd9, 0x7e,
+                       0x6a, 0xed, 0x3f, 0xb0, 0xf9, 0xcd, 0x71, 0xa4,
+                       0x3d, 0xd4, 0x97, 0xf0, 0x1f, 0x17, 0xc0, 0xe2,
+                       0xcb, 0x37, 0x97, 0xaa, 0x2a, 0x2f, 0x25, 0x66,
+                       0x56, 0x16, 0x8e, 0x6c, 0x49, 0x6a, 0xfc, 0x5f,
+                       0xb9, 0x32, 0x46, 0xf6, 0xb1, 0x11, 0x63, 0x98,
+                       0xa3, 0x46, 0xf1, 0xa6, 0x41, 0xf3, 0xb0, 0x41,
+                       0xe9, 0x89, 0xf7, 0x91, 0x4f, 0x90, 0xcc, 0x2c,
+                       0x7f, 0xff, 0x35, 0x78, 0x76, 0xe5, 0x06, 0xb5,
+                       0x0d, 0x33, 0x4b, 0xa7, 0x7c, 0x22, 0x5b, 0xc3,
+                       0x07, 0xba, 0x53, 0x71, 0x52, 0xf3, 0xf1, 0x61,
+                       0x0e, 0x4e, 0xaf, 0xe5, 0x95, 0xf6, 0xd9, 0xd9,
+                       0x0d, 0x11, 0xfa, 0xa9, 0x33, 0xa1, 0x5e, 0xf1,
+                       0x36, 0x95, 0x46, 0x86, 0x8a, 0x7f, 0x3a, 0x45,
+                       0xa9, 0x67, 0x68, 0xd4, 0x0f, 0xd9, 0xd0, 0x34,
+                       0x12, 0xc0, 0x91, 0xc6, 0x31, 0x5c, 0xf4, 0xfd,
+                       0xe7, 0xcb, 0x68, 0x60, 0x69, 0x37, 0x38, 0x0d,
+                       0xb2, 0xea, 0xaa, 0x70, 0x7b, 0x4c, 0x41, 0x85,
+                       0xc3, 0x2e, 0xdd, 0xcd, 0xd3, 0x06, 0x70, 0x5e,
+                       0x4d, 0xc1, 0xff, 0xc8, 0x72, 0xee, 0xee, 0x47,
+                       0x5a, 0x64, 0xdf, 0xac, 0x86, 0xab, 0xa4, 0x1c,
+                       0x06, 0x18, 0x98, 0x3f, 0x87, 0x41, 0xc5, 0xef,
+                       0x68, 0xd3, 0xa1, 0x01, 0xe8, 0xa3, 0xb8, 0xca,
+                       0xc6, 0x0c, 0x90, 0x5c, 0x15, 0xfc, 0x91, 0x08,
+                       0x40, 0xb9, 0x4c, 0x00, 0xa0, 0xb9, 0xd0
+               },
+               .length = 1023,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519,
+       .instance = RTE_CRYPTO_EDCURVE_25519
+},
+{
+       .description = "EDDSA 25519CTX (msg=16, ctx=3)",
+       .pkey = {
+               .data = {
+                       0x03, 0x05, 0x33, 0x4e, 0x38, 0x1a, 0xf7, 0x8f,
+                       0x14, 0x1c, 0xb6, 0x66, 0xf6, 0x19, 0x9f, 0x57,
+                       0xbc, 0x34, 0x95, 0x33, 0x5a, 0x25, 0x6a, 0x95,
+                       0xbd, 0x2a, 0x55, 0xbf, 0x54, 0x66, 0x63, 0xf6
+               },
+               .length = 32,
+       },
+       .pubkey = {
+               .data = {
+                       0xdf, 0xc9, 0x42, 0x5e, 0x4f, 0x96, 0x8f, 0x7f,
+                       0x0c, 0x29, 0xf0, 0x25, 0x9c, 0xf5, 0xf9, 0xae,
+                       0xd6, 0x85, 0x1c, 0x2b, 0xb4, 0xad, 0x8b, 0xfb,
+                       0x86, 0x0c, 0xfe, 0xe0, 0xab, 0x24, 0x82, 0x92
+               },
+               .length = 32,
+       },
+       .sign = {
+               .data = {
+                       0x55, 0xa4, 0xcc, 0x2f, 0x70, 0xa5, 0x4e, 0x04,
+                       0x28, 0x8c, 0x5f, 0x4c, 0xd1, 0xe4, 0x5a, 0x7b,
+                       0xb5, 0x20, 0xb3, 0x62, 0x92, 0x91, 0x18, 0x76,
+                       0xca, 0xda, 0x73, 0x23, 0x19, 0x8d, 0xd8, 0x7a,
+                       0x8b, 0x36, 0x95, 0x0b, 0x95, 0x13, 0x00, 0x22,
+                       0x90, 0x7a, 0x7f, 0xb7, 0xc4, 0xe9, 0xb2, 0xd5,
+                       0xf6, 0xcc, 0xa6, 0x85, 0xa5, 0x87, 0xb4, 0xb2,
+                       0x1f, 0x4b, 0x88, 0x8e, 0x4e, 0x7e, 0xdb, 0x0d
+               },
+               .length = 64,
+       },
+       .message = {
+               .data = {
+                       0xf7, 0x26, 0x93, 0x6d, 0x19, 0xc8, 0x00, 0x49,
+                       0x4e, 0x3f, 0xda, 0xff, 0x20, 0xb2, 0x76, 0xa8,
+               },
+               .length = 16,
+       },
+       .context = {
+               .data = {
+                       0x66, 0x6f, 0x6f
+               },
+               .length = 3,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519,
+       .instance = RTE_CRYPTO_EDCURVE_25519CTX
+},
+{
+       .description = "EDDSA 25519PH (msg=1, ph=1)",
+       .pkey = {
+               .data = {
+                       0x83, 0x3f, 0xe6, 0x24, 0x09, 0x23, 0x7b, 0x9d,
+                       0x62, 0xec, 0x77, 0x58, 0x75, 0x20, 0x91, 0x1e,
+                       0x9a, 0x75, 0x9c, 0xec, 0x1d, 0x19, 0x75, 0x5b,
+                       0x7d, 0xa9, 0x01, 0xb9, 0x6d, 0xca, 0x3d, 0x42
+               },
+               .length = 32,
+       },
+       .pubkey = {
+               .data = {
+                       0xec, 0x17, 0x2b, 0x93, 0xad, 0x5e, 0x56, 0x3b,
+                       0xf4, 0x93, 0x2c, 0x70, 0xe1, 0x24, 0x50, 0x34,
+                       0xc3, 0x54, 0x67, 0xef, 0x2e, 0xfd, 0x4d, 0x64,
+                       0xeb, 0xf8, 0x19, 0x68, 0x34, 0x67, 0xe2, 0xbf
+               },
+               .length = 32,
+       },
+       .sign = {
+               .data = {
+                       0x98, 0xa7, 0x02, 0x22, 0xf0, 0xb8, 0x12, 0x1a,
+                       0xa9, 0xd3, 0x0f, 0x81, 0x3d, 0x68, 0x3f, 0x80,
+                       0x9e, 0x46, 0x2b, 0x46, 0x9c, 0x7f, 0xf8, 0x76,
+                       0x39, 0x49, 0x9b, 0xb9, 0x4e, 0x6d, 0xae, 0x41,
+                       0x31, 0xf8, 0x50, 0x42, 0x46, 0x3c, 0x2a, 0x35,
+                       0x5a, 0x20, 0x03, 0xd0, 0x62, 0xad, 0xf5, 0xaa,
+                       0xa1, 0x0b, 0x8c, 0x61, 0xe6, 0x36, 0x06, 0x2a,
+                       0xaa, 0xd1, 0x1c, 0x2a, 0x26, 0x08, 0x34, 0x06
+               },
+               .length = 64,
+       },
+       .message = {
+               .data = {
+                       0x61, 0x62, 0x63
+               },
+               .length = 3,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED25519,
+       .instance = RTE_CRYPTO_EDCURVE_25519PH
+},
+{
+       .description = "EDDSA 448 (msg=0)",
+       .pkey = {
+               .data = {
+                       0x6C, 0x82, 0xA5, 0x62, 0xCB, 0x80, 0x8D, 0x10,
+                       0xD6, 0x32, 0xBE, 0x89, 0xC8, 0x51, 0x3E, 0xBF,
+                       0x6C, 0x92, 0x9F, 0x34, 0xDD, 0xFA, 0x8C, 0x9F,
+                       0x63, 0xC9, 0x96, 0x0E, 0xF6, 0xE3, 0x48, 0xA3,
+                       0x52, 0x8C, 0x8A, 0x3F, 0xCC, 0x2F, 0x04, 0x4E,
+                       0x39, 0xA3, 0xFC, 0x5B, 0x94, 0x49, 0x2F, 0x8F,
+                       0x03, 0x2E, 0x75, 0x49, 0xA2, 0x00, 0x98, 0xF9,
+                       0x5B,
+               },
+               .length = 57,
+       },
+       .pubkey = {
+               .data = {
+                       0x5F, 0xD7, 0x44, 0x9B, 0x59, 0xB4, 0x61, 0xFD,
+                       0x2C, 0xE7, 0x87, 0xEC, 0x61, 0x6A, 0xD4, 0x6A,
+                       0x1D, 0xA1, 0x34, 0x24, 0x85, 0xA7, 0x0E, 0x1F,
+                       0x8A, 0x0E, 0xA7, 0x5D, 0x80, 0xE9, 0x67, 0x78,
+                       0xED, 0xF1, 0x24, 0x76, 0x9B, 0x46, 0xC7, 0x06,
+                       0x1B, 0xD6, 0x78, 0x3D, 0xF1, 0xE5, 0x0F, 0x6C,
+                       0xD1, 0xFA, 0x1A, 0xBE, 0xAF, 0xE8, 0x25, 0x61,
+                       0x80,
+               },
+               .length = 57,
+       },
+       .sign = {
+               .data = {
+                       0x53, 0x3a, 0x37, 0xf6, 0xbb, 0xe4, 0x57, 0x25,
+                       0x1f, 0x02, 0x3c, 0x0d, 0x88, 0xf9, 0x76, 0xae,
+                       0x2d, 0xfb, 0x50, 0x4a, 0x84, 0x3e, 0x34, 0xd2,
+                       0x07, 0x4f, 0xd8, 0x23, 0xd4, 0x1a, 0x59, 0x1f,
+                       0x2b, 0x23, 0x3f, 0x03, 0x4f, 0x62, 0x82, 0x81,
+                       0xf2, 0xfd, 0x7a, 0x22, 0xdd, 0xd4, 0x7d, 0x78,
+                       0x28, 0xc5, 0x9b, 0xd0, 0xa2, 0x1b, 0xfd, 0x39,
+                       0x80, 0xff, 0x0d, 0x20, 0x28, 0xd4, 0xb1, 0x8a,
+                       0x9d, 0xf6, 0x3e, 0x00, 0x6c, 0x5d, 0x1c, 0x2d,
+                       0x34, 0x5b, 0x92, 0x5d, 0x8d, 0xc0, 0x0b, 0x41,
+                       0x04, 0x85, 0x2d, 0xb9, 0x9a, 0xc5, 0xc7, 0xcd,
+                       0xda, 0x85, 0x30, 0xa1, 0x13, 0xa0, 0xf4, 0xdb,
+                       0xb6, 0x11, 0x49, 0xf0, 0x5a, 0x73, 0x63, 0x26,
+                       0x8c, 0x71, 0xd9, 0x58, 0x08, 0xff, 0x2e, 0x65,
+                       0x26, 0x00,
+               },
+               .length = 114,
+       },
+       .message = {
+               .data = {
+               },
+               .length = 0,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED448,
+       .instance = RTE_CRYPTO_EDCURVE_448
+},
+{
+       .description = "EDDSA 448 (msg=1)",
+       .pkey = {
+               .data = {
+                       0xc4, 0xea, 0xb0, 0x5d, 0x35, 0x70, 0x07, 0xc6,
+                       0x32, 0xf3, 0xdb, 0xb4, 0x84, 0x89, 0x92, 0x4d,
+                       0x55, 0x2b, 0x08, 0xfe, 0x0c, 0x35, 0x3a, 0x0d,
+                       0x4a, 0x1f, 0x00, 0xac, 0xda, 0x2c, 0x46, 0x3a,
+                       0xfb, 0xea, 0x67, 0xc5, 0xe8, 0xd2, 0x87, 0x7c,
+                       0x5e, 0x3b, 0xc3, 0x97, 0xa6, 0x59, 0x94, 0x9e,
+                       0xf8, 0x02, 0x1e, 0x95, 0x4e, 0x0a, 0x12, 0x27,
+                       0x4e,
+               },
+               .length = 57,
+       },
+       .pubkey = {
+               .data = {
+                       0x43, 0xba, 0x28, 0xf4, 0x30, 0xcd, 0xff, 0x45,
+                       0x6a, 0xe5, 0x31, 0x54, 0x5f, 0x7e, 0xcd, 0x0a,
+                       0xc8, 0x34, 0xa5, 0x5d, 0x93, 0x58, 0xc0, 0x37,
+                       0x2b, 0xfa, 0x0c, 0x6c, 0x67, 0x98, 0xc0, 0x86,
+                       0x6a, 0xea, 0x01, 0xeb, 0x00, 0x74, 0x28, 0x02,
+                       0xb8, 0x43, 0x8e, 0xa4, 0xcb, 0x82, 0x16, 0x9c,
+                       0x23, 0x51, 0x60, 0x62, 0x7b, 0x4c, 0x3a, 0x94,
+                       0x80,
+               },
+               .length = 57,
+       },
+       .sign = {
+               .data = {
+                       0x26, 0xb8, 0xf9, 0x17, 0x27, 0xbd, 0x62, 0x89,
+                       0x7a, 0xf1, 0x5e, 0x41, 0xeb, 0x43, 0xc3, 0x77,
+                       0xef, 0xb9, 0xc6, 0x10, 0xd4, 0x8f, 0x23, 0x35,
+                       0xcb, 0x0b, 0xd0, 0x08, 0x78, 0x10, 0xf4, 0x35,
+                       0x25, 0x41, 0xb1, 0x43, 0xc4, 0xb9, 0x81, 0xb7,
+                       0xe1, 0x8f, 0x62, 0xde, 0x8c, 0xcd, 0xf6, 0x33,
+                       0xfc, 0x1b, 0xf0, 0x37, 0xab, 0x7c, 0xd7, 0x79,
+                       0x80, 0x5e, 0x0d, 0xbc, 0xc0, 0xaa, 0xe1, 0xcb,
+                       0xce, 0xe1, 0xaf, 0xb2, 0xe0, 0x27, 0xdf, 0x36,
+                       0xbc, 0x04, 0xdc, 0xec, 0xbf, 0x15, 0x43, 0x36,
+                       0xc1, 0x9f, 0x0a, 0xf7, 0xe0, 0xa6, 0x47, 0x29,
+                       0x05, 0xe7, 0x99, 0xf1, 0x95, 0x3d, 0x2a, 0x0f,
+                       0xf3, 0x34, 0x8a, 0xb2, 0x1a, 0xa4, 0xad, 0xaf,
+                       0xd1, 0xd2, 0x34, 0x44, 0x1c, 0xf8, 0x07, 0xc0,
+                       0x3a, 0x00,
+               },
+               .length = 114,
+       },
+       .message = {
+               .data = {
+                       0x03
+               },
+               .length = 1,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED448,
+       .instance = RTE_CRYPTO_EDCURVE_448
+},
+{
+       .description = "EDDSA 448 (msg=3, ph=1)",
+       .pkey = {
+               .data = {
+                       0x83, 0x3f, 0xe6, 0x24, 0x09, 0x23, 0x7b, 0x9d,
+                       0x62, 0xec, 0x77, 0x58, 0x75, 0x20, 0x91, 0x1e,
+                       0x9a, 0x75, 0x9c, 0xec, 0x1d, 0x19, 0x75, 0x5b,
+                       0x7d, 0xa9, 0x01, 0xb9, 0x6d, 0xca, 0x3d, 0x42,
+                       0xef, 0x78, 0x22, 0xe0, 0xd5, 0x10, 0x41, 0x27,
+                       0xdc, 0x05, 0xd6, 0xdb, 0xef, 0xde, 0x69, 0xe3,
+                       0xab, 0x2c, 0xec, 0x7c, 0x86, 0x7c, 0x6e, 0x2c,
+                       0x49
+               },
+               .length = 57,
+       },
+       .pubkey = {
+               .data = {
+                       0x25, 0x9b, 0x71, 0xc1, 0x9f, 0x83, 0xef, 0x77,
+                       0xa7, 0xab, 0xd2, 0x65, 0x24, 0xcb, 0xdb, 0x31,
+                       0x61, 0xb5, 0x90, 0xa4, 0x8f, 0x7d, 0x17, 0xde,
+                       0x3e, 0xe0, 0xba, 0x9c, 0x52, 0xbe, 0xb7, 0x43,
+                       0xc0, 0x94, 0x28, 0xa1, 0x31, 0xd6, 0xb1, 0xb5,
+                       0x73, 0x03, 0xd9, 0x0d, 0x81, 0x32, 0xc2, 0x76,
+                       0xd5, 0xed, 0x3d, 0x5d, 0x01, 0xc0, 0xf5, 0x38,
+                       0x80
+               },
+               .length = 57,
+       },
+       .sign = {
+               .data = {
+                       0x82, 0x2f, 0x69, 0x01, 0xf7, 0x48, 0x0f, 0x3d,
+                       0x5f, 0x56, 0x2c, 0x59, 0x29, 0x94, 0xd9, 0x69,
+                       0x36, 0x02, 0x87, 0x56, 0x14, 0x48, 0x32, 0x56,
+                       0x50, 0x56, 0x00, 0xbb, 0xc2, 0x81, 0xae, 0x38,
+                       0x1f, 0x54, 0xd6, 0xbc, 0xe2, 0xea, 0x91, 0x15,
+                       0x74, 0x93, 0x2f, 0x52, 0xa4, 0xe6, 0xca, 0xdd,
+                       0x78, 0x76, 0x93, 0x75, 0xec, 0x3f, 0xfd, 0x1b,
+                       0x80, 0x1a, 0x0d, 0x9b, 0x3f, 0x40, 0x30, 0xcd,
+                       0x43, 0x39, 0x64, 0xb6, 0x45, 0x7e, 0xa3, 0x94,
+                       0x76, 0x51, 0x12, 0x14, 0xf9, 0x74, 0x69, 0xb5,
+                       0x7d, 0xd3, 0x2d, 0xbc, 0x56, 0x0a, 0x9a, 0x94,
+                       0xd0, 0x0b, 0xff, 0x07, 0x62, 0x04, 0x64, 0xa3,
+                       0xad, 0x20, 0x3d, 0xf7, 0xdc, 0x7c, 0xe3, 0x60,
+                       0xc3, 0xcd, 0x36, 0x96, 0xd9, 0xd9, 0xfa, 0xb9,
+                       0x0f, 0x00
+               },
+               .length = 114,
+       },
+       .message = {
+               .data = {
+                       0x61, 0x62, 0x63
+               },
+               .length = 3,
+       },
+       .curve = RTE_CRYPTO_EC_GROUP_ED448,
+       .instance = RTE_CRYPTO_EDCURVE_448PH
+},
+};
+
+#endif /* __TEST_CRYPTODEV_EDDSA_TEST_VECTORS_H__ */
-- 
2.21.0


Reply via email to