cab0c8f3c0
As described in [1] and as announced in [2], The field ``dataunit_len`` of the ``struct rte_crypto_cipher_xform`` moved to the end of the structure and extended to ``uint32_t``. In this way, sizes bigger than 64K bytes can be supported for data-unit lengths. [1] commitd014dddb2d
("cryptodev: support multiple cipher data-units") [2] commit9a5c09211b
("doc: announce extension of crypto data-unit length") Signed-off-by: Matan Azrad <matan@nvidia.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
111 lines
3.1 KiB
C
111 lines
3.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2016-2017 Intel Corporation
|
|
*/
|
|
|
|
#ifndef TEST_CRYPTODEV_BLOCKCIPHER_H_
|
|
#define TEST_CRYPTODEV_BLOCKCIPHER_H_
|
|
|
|
#ifndef BLOCKCIPHER_TEST_MSG_LEN
|
|
#define BLOCKCIPHER_TEST_MSG_LEN 256
|
|
#endif
|
|
|
|
#define BLOCKCIPHER_TEST_OP_ENCRYPT 0x01
|
|
#define BLOCKCIPHER_TEST_OP_DECRYPT 0x02
|
|
#define BLOCKCIPHER_TEST_OP_AUTH_GEN 0x04
|
|
#define BLOCKCIPHER_TEST_OP_AUTH_VERIFY 0x08
|
|
#define BLOCKCIPHER_TEST_OP_DIGEST_ENCRYPTED 0x10
|
|
|
|
#define BLOCKCIPHER_TEST_FEATURE_OOP 0x01
|
|
#define BLOCKCIPHER_TEST_FEATURE_SESSIONLESS 0x02
|
|
#define BLOCKCIPHER_TEST_FEATURE_STOPPER 0x04 /* stop upon failing */
|
|
#define BLOCKCIPHER_TEST_FEATURE_SG 0x08 /* Scatter Gather */
|
|
#define BLOCKCIPHER_TEST_FEATURE_DIGEST_ENCRYPTED 0x10
|
|
|
|
#define BLOCKCIPHER_TEST_OP_CIPHER (BLOCKCIPHER_TEST_OP_ENCRYPT | \
|
|
BLOCKCIPHER_TEST_OP_DECRYPT)
|
|
|
|
#define BLOCKCIPHER_TEST_OP_AUTH (BLOCKCIPHER_TEST_OP_AUTH_GEN | \
|
|
BLOCKCIPHER_TEST_OP_AUTH_VERIFY)
|
|
|
|
#define BLOCKCIPHER_TEST_OP_ENC_AUTH_GEN (BLOCKCIPHER_TEST_OP_ENCRYPT | \
|
|
BLOCKCIPHER_TEST_OP_AUTH_GEN)
|
|
|
|
#define BLOCKCIPHER_TEST_OP_AUTH_VERIFY_DEC (BLOCKCIPHER_TEST_OP_DECRYPT | \
|
|
BLOCKCIPHER_TEST_OP_AUTH_VERIFY)
|
|
|
|
#define BLOCKCIPHER_TEST_OP_AUTH_GEN_ENC (BLOCKCIPHER_TEST_OP_ENCRYPT | \
|
|
BLOCKCIPHER_TEST_OP_AUTH_GEN | \
|
|
BLOCKCIPHER_TEST_OP_DIGEST_ENCRYPTED)
|
|
|
|
#define BLOCKCIPHER_TEST_OP_DEC_AUTH_VERIFY (BLOCKCIPHER_TEST_OP_DECRYPT | \
|
|
BLOCKCIPHER_TEST_OP_AUTH_VERIFY | \
|
|
BLOCKCIPHER_TEST_OP_DIGEST_ENCRYPTED)
|
|
|
|
enum blockcipher_test_type {
|
|
BLKCIPHER_AES_CHAIN_TYPE, /* use aes_chain_test_cases[] */
|
|
BLKCIPHER_AES_CIPHERONLY_TYPE, /* use aes_cipheronly_test_cases[] */
|
|
BLKCIPHER_AES_DOCSIS_TYPE, /* use aes_docsis_test_cases[] */
|
|
BLKCIPHER_3DES_CHAIN_TYPE, /* use triple_des_chain_test_cases[] */
|
|
BLKCIPHER_3DES_CIPHERONLY_TYPE, /* triple_des_cipheronly_test_cases[] */
|
|
BLKCIPHER_AUTHONLY_TYPE, /* use hash_test_cases[] */
|
|
BLKCIPHER_DES_CIPHERONLY_TYPE, /* use des_cipheronly_test_cases[] */
|
|
BLKCIPHER_DES_DOCSIS_TYPE /* use des_docsis_test_cases[] */
|
|
};
|
|
|
|
struct blockcipher_test_case {
|
|
const char *test_descr; /* test description */
|
|
const struct blockcipher_test_data *test_data;
|
|
uint8_t op_mask; /* operation mask */
|
|
uint8_t feature_mask;
|
|
};
|
|
|
|
struct blockcipher_test_data {
|
|
enum rte_crypto_cipher_algorithm crypto_algo;
|
|
|
|
struct {
|
|
uint8_t data[64];
|
|
unsigned int len;
|
|
} cipher_key;
|
|
|
|
struct {
|
|
uint8_t data[64] __rte_aligned(16);
|
|
unsigned int len;
|
|
} iv;
|
|
|
|
struct {
|
|
const uint8_t *data;
|
|
unsigned int len;
|
|
} plaintext;
|
|
|
|
struct {
|
|
const uint8_t *data;
|
|
unsigned int len;
|
|
} ciphertext;
|
|
|
|
enum rte_crypto_auth_algorithm auth_algo;
|
|
|
|
struct {
|
|
uint8_t data[128];
|
|
unsigned int len;
|
|
} auth_key;
|
|
|
|
struct {
|
|
uint8_t data[128];
|
|
unsigned int len; /* for qat */
|
|
unsigned int truncated_len; /* for mb */
|
|
} digest;
|
|
|
|
unsigned int cipher_offset;
|
|
unsigned int auth_offset;
|
|
uint32_t xts_dataunit_len;
|
|
bool wrapped_key;
|
|
};
|
|
|
|
struct unit_test_suite *
|
|
build_blockcipher_test_suite(enum blockcipher_test_type test_type);
|
|
|
|
void
|
|
free_blockcipher_test_suite(struct unit_test_suite *ts);
|
|
|
|
#endif /* TEST_CRYPTODEV_BLOCKCIPHER_H_ */
|