numam-dpdk/app/test-crypto-perf/cperf_test_vectors.h
Kiran Kumar K a538d1d2d0 test/crypto-perf: extend asymmetric crypto throughput test
Extended support for asymmetric crypto perf throughput test.
Added support for new modulus lengths.
Added new parameter --modex-len.
Supported lengths are 60, 128, 255, 448. Default length is 128.

Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
2022-04-29 11:01:45 +02:00

116 lines
1.7 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2016-2017 Intel Corporation
*/
#ifndef _CPERF_TEST_VECTRORS_
#define _CPERF_TEST_VECTRORS_
#include "cperf_options.h"
struct cperf_test_vector {
struct {
uint8_t *data;
uint32_t length;
} plaintext;
struct {
uint8_t *data;
uint16_t length;
} cipher_key;
struct {
uint8_t *data;
uint16_t length;
} auth_key;
struct {
uint8_t *data;
uint16_t length;
} aead_key;
struct {
uint8_t *data;
uint16_t length;
} cipher_iv;
struct {
uint8_t *data;
uint16_t length;
} auth_iv;
struct {
uint8_t *data;
uint16_t length;
} aead_iv;
struct {
uint8_t *data;
uint32_t length;
} ciphertext;
struct {
uint8_t *data;
rte_iova_t phys_addr;
uint16_t length;
} aad;
struct {
uint8_t *data;
rte_iova_t phys_addr;
uint16_t length;
} digest;
struct {
uint32_t auth_offset;
uint32_t auth_length;
uint32_t cipher_offset;
uint32_t cipher_length;
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_modex_test_data {
#define DATA_SIZE 512
struct {
uint8_t data[DATA_SIZE];
uint16_t len;
} base;
struct {
uint8_t data[DATA_SIZE];
uint16_t len;
} exponent;
struct {
uint8_t data[DATA_SIZE];
uint16_t len;
} modulus;
struct {
uint8_t data[DATA_SIZE];
uint16_t len;
} result;
};
struct cperf_test_vector*
cperf_test_vector_get_dummy(struct cperf_options *options);
extern uint8_t ciphertext[2048];
extern uint8_t cipher_key[];
extern uint8_t auth_key[];
extern uint8_t iv[];
extern uint8_t aad[];
extern uint8_t digest[2048];
extern struct cperf_modex_test_data modex_perf_data[4];
#endif