1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2015 Nexenta Systems, Inc. All rights reserved.
* Copyright 2019 Joyent, Inc.
*/
#ifndef _CRYPTOTEST_H
#define _CRYPTOTEST_H
#ifdef __cplusplus
extern "C" {
#endif
#include <inttypes.h>
#include <sys/crypto/ioctl.h>
#define CTEST_INIT_FAILED (-1)
#define CTEST_NAME_RESOLVE_FAILED (-2)
#define CTEST_MECH_NO_PROVIDER (-3)
#define CTEST_UPDATELEN_WHOLE SIZE_MAX
#define CTEST_UPDATELEN_END 0
typedef struct cryptotest {
uint8_t *in;
uint8_t *out;
uint8_t *key;
void *param;
size_t inlen;
size_t outlen;
size_t keylen;
size_t plen;
char *mechname;
size_t *updatelens;
} cryptotest_t;
typedef struct crypto_op crypto_op_t;
typedef struct test_fg {
crypto_func_group_t tf_fg;
int (*tf_init)(crypto_op_t *);
int (*tf_single)(crypto_op_t *);
int (*tf_update)(crypto_op_t *, size_t, size_t, size_t *);
int (*tf_final)(crypto_op_t *, size_t);
} test_fg_t;
#define CRYPTO_INVALID_SESSION ((crypto_session_id_t)-1)
int run_test(cryptotest_t *args, uint8_t *cmp, size_t cmplen, test_fg_t *funcs);
const char *cryptotest_errstr(int e, char *buf, size_t buflen);
/* utils */
crypto_op_t *cryptotest_init(cryptotest_t *args, crypto_func_group_t fg);
void cryptotest_close(crypto_op_t *op);
int get_mech_info(crypto_op_t *op);
int get_hsession_by_mech(crypto_op_t *op);
/* CRYPTO_MAC */
int mac_init(crypto_op_t *op);
int mac_single(crypto_op_t *op);
int mac_update(crypto_op_t *op, size_t offset, size_t len, size_t *dummy);
int mac_final(crypto_op_t *op, size_t dummy);
/* CRYPTO_ENCRYPT */
int encrypt_init(crypto_op_t *op);
int encrypt_single(crypto_op_t *op);
int encrypt_update(crypto_op_t *op, size_t offset, size_t plainlen,
size_t *encrlen);
int encrypt_final(crypto_op_t *op, size_t encrlen);
/* CRYPTO_DECRYPT */
int decrypt_init(crypto_op_t *op);
int decrypt_single(crypto_op_t *op);
int decrypt_update(crypto_op_t *op, size_t offset, size_t cipherlen,
size_t *encrlen);
int decrypt_final(crypto_op_t *op, size_t encrlen);
/* CRYPTO_DIGEST */
int digest_init(crypto_op_t *op);
int digest_single(crypto_op_t *op);
int digest_update(crypto_op_t *op, size_t offset, size_t len, size_t *dummy);
int digest_final(crypto_op_t *op, size_t dummy);
extern test_fg_t cryptotest_decr_fg;
extern test_fg_t cryptotest_encr_fg;
extern test_fg_t cryptotest_mac_fg;
extern test_fg_t cryptotest_digest_fg;
#define MAC_FG (&cryptotest_mac_fg)
#define ENCR_FG (&cryptotest_encr_fg)
#define DECR_FG (&cryptotest_decr_fg)
#define DIGEST_FG (&cryptotest_digest_fg)
/*
* KCF and PKCS11 use different structures for the CCM params (CK_AES_CCM_PARAMS
* and CK_CCM_PARAMS respectively. Each cryptotest_*.c file implements this
* for their respective structs.
*/
void ccm_init_params(void *, ulong_t, uchar_t *, ulong_t, uchar_t *, ulong_t,
ulong_t);
size_t ccm_param_len(void);
#ifdef __cplusplus
}
#endif
#endif /* _CRYPTOTEST_H */
|