FD.io VPP
v19.04.4-rc0-5-ge88582fac
Vector Packet Processing
crypto.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2019 Cisco and/or its affiliates.
3
* Licensed under the Apache License, Version 2.0 (the "License");
4
* you may not use this file except in compliance with the License.
5
* You may obtain a copy of the License at:
6
*
7
* http://www.apache.org/licenses/LICENSE-2.0
8
*
9
* Unless required by applicable law or agreed to in writing, software
10
* distributed under the License is distributed on an "AS IS" BASIS,
11
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
* See the License for the specific language governing permissions and
13
* limitations under the License.
14
*/
15
16
17
#ifndef included_unittest_crypto_crypto_h
18
#define included_unittest_crypto_crypto_h
19
20
typedef
struct
21
{
22
u32
length
;
23
u8
*
data
;
24
}
unittest_crypto_test_data_t
;
25
26
typedef
struct
unittest_crypto_test_registration
27
{
28
char
*
name
;
29
vnet_crypto_alg_t
alg
;
30
unittest_crypto_test_data_t
iv
,
key
,
digest
,
plaintext
,
ciphertext
,
aad
,
31
tag
;
32
33
/* next */
34
struct
unittest_crypto_test_registration
*
next
;
35
}
unittest_crypto_test_registration_t
;
36
37
38
typedef
struct
39
{
40
int
verbose
;
41
unittest_crypto_test_registration_t
*
test_registrations
;
42
}
crypto_test_main_t
;
43
44
extern
crypto_test_main_t
crypto_test_main
;
45
46
#define TEST_DATA(n) { .data = (u8 *) n, .length = sizeof (n)}
47
48
#define UNITTEST_REGISTER_CRYPTO_TEST(x) \
49
unittest_crypto_test_registration_t __unittest_crypto_test_##x; \
50
static void __clib_constructor \
51
__unittest_crypto_test_registration_##x (void) \
52
{ \
53
crypto_test_main_t * cm = &crypto_test_main; \
54
__unittest_crypto_test_##x.next = cm->test_registrations; \
55
cm->test_registrations = & __unittest_crypto_test_##x; \
56
} \
57
unittest_crypto_test_registration_t __unittest_crypto_test_##x
58
59
#endif
60
61
/*
62
* fd.io coding-style-patch-verification: ON
63
*
64
* Local Variables:
65
* eval: (c-set-style "gnu")
66
* End:
67
*/
crypto_test_main_t::verbose
int verbose
Definition:
crypto.h:40
unittest_crypto_test_registration::aad
unittest_crypto_test_data_t aad
Definition:
crypto.h:30
unittest_crypto_test_data_t::length
u32 length
Definition:
crypto.h:22
unittest_crypto_test_data_t::data
u8 * data
Definition:
crypto.h:23
unittest_crypto_test_registration::iv
unittest_crypto_test_data_t iv
Definition:
crypto.h:30
u8
unsigned char u8
Definition:
types.h:56
unittest_crypto_test_registration
Definition:
crypto.h:26
unittest_crypto_test_registration::plaintext
unittest_crypto_test_data_t plaintext
Definition:
crypto.h:30
unittest_crypto_test_registration_t
struct unittest_crypto_test_registration unittest_crypto_test_registration_t
u32
unsigned int u32
Definition:
types.h:88
vnet_crypto_alg_t
vnet_crypto_alg_t
Definition:
crypto.h:75
crypto_test_main_t::test_registrations
unittest_crypto_test_registration_t * test_registrations
Definition:
crypto.h:41
crypto_test_main
crypto_test_main_t crypto_test_main
unittest_crypto_test_registration::alg
vnet_crypto_alg_t alg
Definition:
crypto.h:29
unittest_crypto_test_registration::name
char * name
Definition:
crypto.h:28
unittest_crypto_test_registration::ciphertext
unittest_crypto_test_data_t ciphertext
Definition:
crypto.h:30
unittest_crypto_test_registration::tag
unittest_crypto_test_data_t tag
Definition:
crypto.h:30
unittest_crypto_test_data_t
Definition:
crypto.h:20
unittest_crypto_test_registration::digest
unittest_crypto_test_data_t digest
Definition:
crypto.h:30
crypto_test_main_t
Definition:
crypto.h:38
unittest_crypto_test_registration::next
struct unittest_crypto_test_registration * next
Definition:
crypto.h:34
unittest_crypto_test_registration::key
unittest_crypto_test_data_t key
Definition:
crypto.h:30
src
plugins
unittest
crypto
crypto.h
Generated on Mon Jun 29 2020 12:02:52 for FD.io VPP by
1.8.13