]> git.zerfleddert.de Git - proxmark3-svn/blame - client/emv/test/crypto_test.c
Mfp read plain (#704)
[proxmark3-svn] / client / emv / test / crypto_test.c
CommitLineData
d03fb293
OM
1/*
2 * emv-tools - a set of tools to work with EMV family of smart cards
3 * Copyright (C) 2015 Dmitry Eremin-Solenikov
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 */
15
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "../crypto.h"
21#include "../dump.h"
22#include "util_posix.h"
23
24#include <stdlib.h>
25#include <string.h>
26#include <inttypes.h>
27
28static int test_genkey(unsigned int keylength, unsigned char *msg, size_t msg_len, bool verbose)
29{
30 int ret = 1;
31 size_t tmp_len, tmp2_len;
32 unsigned char *tmp, *tmp2;
33 struct crypto_pk *pk;
34
35 printf("Testing key length %u ", keylength);
36 uint64_t ms = msclock();
37
38 pk = crypto_pk_genkey(PK_RSA, 1, keylength, 3);
39 if (!pk) {
40 fprintf(stderr, "ERROR: key generation error.\n");
41 goto out;
42 }
43
44 tmp_len = crypto_pk_get_nbits(pk);
45 if (tmp_len != keylength) {
46 fprintf(stderr, "ERROR: crypto_pk_get_nbits.\n");
47 goto close;
48 }
49
50 tmp = crypto_pk_decrypt(pk, msg, msg_len, &tmp_len);
51 if (!tmp) {
52 fprintf(stderr, "ERROR: crypto_pk_decrypt.\n");
53 goto close;
54 }
55
56 tmp2 = crypto_pk_encrypt(pk, tmp, tmp_len, &tmp2_len);
57 if (!tmp2) {
58 fprintf(stderr, "ERROR: crypto_pk_encrypt.\n");
59 goto free_tmp;
60 }
61
62 if (tmp2_len == msg_len && !memcmp(tmp2, msg, tmp2_len)) {
63 ret = 0;
64 } else {
65 fprintf(stderr, "ERROR: encrypt-decrypt sequence length or data error.\n");
66 }
67
68 free(tmp2);
69 printf("passed. (%"PRIu64" ms) \n", msclock() - ms);
70free_tmp:
71 free(tmp);
72close:
73 crypto_pk_close(pk);
74
75out:
76 return ret;
77}
78
79static unsigned char message[4096 / 8] =
80 "aaaaaaaaaaaaaaaabbbbbbbbbbbbbbbb"
81 "ccccccccccccccccdddddddddddddddd"
82 "eeeeeeeeeeeeeeeeffffffffffffffff"
83 "gggggggggggggggghhhhhhhhhhhhhhhh"
84 "iiiiiiiiiiiiiiiijjjjjjjjjjjjjjjj"
85 "kkkkkkkkkkkkkkkkllllllllllllllll"
86 "mmmmmmmmmmmmmmmmnnnnnnnnnnnnnnnn"
87 "oooooooooooooooopppppppppppppppp"
88 "qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrrr"
89 "sssssssssssssssstttttttttttttttt"
90 "uuuuuuuuuuuuuuuuvvvvvvvvvvvvvvvv"
91 "wwwwwwwwwwwwwwwwxxxxxxxxxxxxxxxx"
92 "yyyyyyyyyyyyyyyyzzzzzzzzzzzzzzzz"
93 "aaaaaaaaaaaaaaaabbbbbbbbbbbbbbbb"
94 "ccccccccccccccccdddddddddddddddd"
95 "eeeeeeeeeeeeeeeeffffffffffffffff"
96 ;
97
98static unsigned char pk_N[] = {
99 0xdb, 0x12, 0xe4, 0xf1, 0x8d, 0x43, 0x74, 0xf0, 0xec, 0x38, 0xdc, 0xfb, 0xf9, 0x20, 0x75, 0x6d,
100 0x05, 0xf4, 0x36, 0xc2, 0x21, 0xac, 0x34, 0x0d, 0x16, 0xc5, 0x23, 0xcb, 0xfc, 0x9a, 0x8a, 0xd1,
101 0xe0, 0xbd, 0xda, 0xe5, 0x77, 0xd5, 0xaf, 0x65, 0x8d, 0x6b, 0x62, 0x5c, 0xcd, 0x89, 0x06, 0x8d,
102 0x11, 0x19, 0x6b, 0x0e, 0x3e, 0xe2, 0x80, 0x45, 0xf6, 0x44, 0x55, 0x21, 0x9c, 0x86, 0x90, 0x00,
103 0xa8, 0xaf, 0x8c, 0x94, 0xde, 0x3f, 0xe8, 0x56, 0x52, 0xfe, 0xee, 0xa5, 0x36, 0x72, 0x07, 0xf2,
104 0xcf, 0x8e, 0xf0, 0xbd, 0xff, 0x36, 0xd5, 0xf2, 0xad, 0x74, 0x1d, 0x17, 0xd0, 0xb7, 0x93, 0xe2,
105 0x2c, 0x8d, 0x3f, 0xb6, 0x7c, 0x65, 0x19, 0x9f, 0xa7, 0x80, 0x1f, 0x9f, 0xe5, 0x2f, 0x2d, 0x75,
106 0xc9, 0xc2, 0xe9, 0x70, 0xfa, 0x1e, 0x5a, 0xc6, 0xa3, 0x82, 0xd1, 0x29, 0x5a, 0x60, 0xce, 0x1f,
107 0x40, 0x2e, 0xfc, 0x2a, 0x5e, 0xde, 0xc9, 0x67, 0xfc, 0x45, 0x18, 0xce, 0xf2, 0x83, 0x94, 0x53,
108 0xd6, 0x4f, 0x2e, 0xc5, 0x2d, 0xa1, 0xa5, 0x7a, 0x63, 0x26, 0x70, 0xcb, 0x76, 0xfc, 0xb5, 0x8d,
109 0x0f, 0x88, 0x4c, 0x07, 0xba, 0xfa, 0x8b, 0xbc, 0xa0, 0xea, 0xea, 0x0a, 0xe6, 0xa5, 0x44, 0xa5,
110 0x0d, 0x12, 0x66, 0x2b, 0xf7, 0xc4, 0x76, 0xa3, 0x82, 0xa6, 0x2b, 0xb2, 0x5a, 0x27, 0xcd, 0x11,
111 0xd2, 0x9d, 0x42, 0x86, 0x8c, 0x82, 0xc8, 0xe1, 0xff, 0x7d, 0xf1, 0xd9, 0xd9, 0xa1, 0xf3, 0x3d,
112 0xc3, 0x12, 0x4e, 0x47, 0xc8, 0xa2, 0xcd, 0x72, 0x5a, 0x18, 0xea, 0x89, 0x5c, 0x73, 0x28, 0x52,
113 0xf8, 0xdb, 0x70, 0xdc, 0x92, 0xc9, 0xb7, 0x98, 0x10, 0x94, 0x79, 0xdc, 0x9e, 0x12, 0x6c, 0x14,
114 0x78, 0xf9, 0x5a, 0xad, 0x00, 0x98, 0xc8, 0x17, 0x79, 0x8a, 0xed, 0xe7, 0xc3, 0xd3, 0xa7, 0x8b,
115};
116
117static unsigned char pk_E[] = {
118 0x01, 0x00, 0x01,
119};
120
121static unsigned char pk_D[] = {
122 0x01, 0x17, 0xd4, 0x0a, 0x9c, 0x80, 0xd4, 0xa9, 0x8b, 0x14, 0x31, 0x8e, 0x14, 0x4d, 0x24, 0x28,
123 0xda, 0x19, 0xc0, 0xd8, 0x31, 0x20, 0xd1, 0xd5, 0xaa, 0xe2, 0x6a, 0xee, 0x4e, 0xa1, 0x5a, 0xc5,
124 0xf7, 0x50, 0x1b, 0x32, 0x7f, 0xe9, 0x92, 0x09, 0x78, 0xae, 0x2b, 0x7c, 0x79, 0x0e, 0x10, 0xf9,
125 0x4d, 0x37, 0x8a, 0x40, 0x34, 0xf2, 0x1e, 0x5f, 0xba, 0xfd, 0xd6, 0x4a, 0xe7, 0xa4, 0x08, 0x3d,
126 0xe8, 0x99, 0x8f, 0xa3, 0x02, 0x84, 0xe1, 0x1c, 0xe5, 0x27, 0x1e, 0x7b, 0xb6, 0x8c, 0xd5, 0x1b,
127 0x52, 0x0b, 0xcd, 0x89, 0xb5, 0x27, 0x49, 0xe3, 0xff, 0x17, 0x90, 0x39, 0x99, 0x32, 0x01, 0x4b,
128 0xe4, 0x9b, 0x03, 0xd1, 0x5e, 0x47, 0x86, 0xdc, 0x34, 0x12, 0xc0, 0x95, 0xa4, 0xa8, 0x1a, 0x9a,
129 0xf6, 0xd9, 0xc1, 0x1e, 0x6e, 0x31, 0x0e, 0x94, 0xe5, 0x25, 0xf6, 0xf3, 0x34, 0xdf, 0x3c, 0xc8,
130 0x0a, 0xc5, 0x8c, 0x00, 0x5c, 0x59, 0x55, 0x06, 0xd1, 0x39, 0x84, 0x35, 0x96, 0x40, 0xe8, 0xb2,
131 0xf7, 0x13, 0x83, 0x37, 0xe1, 0xe2, 0x79, 0x41, 0x90, 0x2a, 0xc3, 0x71, 0xc5, 0xcf, 0xf0, 0xaa,
132 0x01, 0x2f, 0x48, 0x9c, 0x3f, 0x29, 0x7b, 0xb7, 0x5c, 0xef, 0x25, 0xde, 0x34, 0x23, 0x81, 0x7a,
133 0x4c, 0x3a, 0x9b, 0xe4, 0xa7, 0x44, 0x73, 0xbf, 0xf7, 0x39, 0x43, 0xa4, 0x39, 0xa0, 0x1b, 0xf7,
134 0x4f, 0x5f, 0x14, 0x49, 0x32, 0x0e, 0x66, 0xd0, 0x29, 0xb5, 0x80, 0xe0, 0xba, 0x3b, 0x88, 0x2b,
135 0x14, 0xa4, 0x26, 0x00, 0x2f, 0x50, 0x20, 0x4e, 0xfa, 0xc2, 0x44, 0x72, 0x72, 0x6c, 0x2a, 0x77,
136 0x85, 0x20, 0xe0, 0x1d, 0x95, 0x6a, 0x66, 0xe7, 0xb8, 0xca, 0x5b, 0xc9, 0xc3, 0xf3, 0x39, 0xef,
137 0xd7, 0xd5, 0x45, 0xb6, 0x3e, 0x19, 0xea, 0x7c, 0x56, 0x20, 0x1b, 0x95, 0x86, 0x2e, 0xc7, 0x51,
138};
139
140static unsigned char pk_P[] = {
141 0xf5, 0x93, 0x0f, 0x76, 0x00, 0xab, 0x37, 0x01, 0xb9, 0x52, 0xb6, 0x82, 0xf9, 0xf5, 0xae, 0x29,
142 0x8f, 0xd5, 0x08, 0xbc, 0xf7, 0x9f, 0x84, 0xb6, 0x4c, 0x94, 0xb5, 0xfc, 0xfe, 0xe1, 0xcd, 0x6a,
143 0xf4, 0x9c, 0xa7, 0x33, 0xdb, 0xd8, 0xc8, 0xc1, 0xc0, 0x8d, 0x65, 0xed, 0x29, 0x99, 0x6c, 0x5c,
144 0xbe, 0x08, 0xac, 0x04, 0xe4, 0x3a, 0x18, 0xe2, 0x0f, 0x70, 0x26, 0x70, 0x9b, 0x71, 0xfc, 0x9f,
145 0x22, 0xea, 0x90, 0x3b, 0xc2, 0xa5, 0x16, 0x7a, 0xcd, 0x04, 0x3e, 0xa6, 0x37, 0x49, 0xa7, 0xee,
146 0xaa, 0xe4, 0x9d, 0xaa, 0x9b, 0xb0, 0xe2, 0x6a, 0x9d, 0x1e, 0xcd, 0x83, 0x4e, 0xd8, 0x59, 0x6d,
147 0x03, 0xd5, 0x4c, 0x5e, 0xc5, 0x22, 0x10, 0xb7, 0xcc, 0x0c, 0x90, 0x76, 0x05, 0x21, 0xe7, 0x77,
148 0x5c, 0x88, 0x5f, 0xd0, 0x5f, 0x9e, 0x2e, 0x49, 0x56, 0xf4, 0x2b, 0xa9, 0x99, 0x57, 0x74, 0x19,
149};
150
151static unsigned char pk_Q[] = {
152 0xe4, 0x5f, 0xd2, 0x28, 0xbd, 0xf3, 0xdd, 0x70, 0x3d, 0xfd, 0x01, 0x23, 0xae, 0x93, 0x6a, 0x91,
153 0xca, 0x68, 0xb1, 0xdb, 0x81, 0xab, 0x1e, 0x63, 0x76, 0x9b, 0x6d, 0xaa, 0x41, 0x87, 0x5a, 0x79,
154 0xe7, 0xce, 0xd6, 0x84, 0x32, 0x53, 0xf5, 0xfc, 0xb7, 0x41, 0x7c, 0xcb, 0x88, 0x09, 0xcb, 0xe9,
155 0x07, 0x16, 0x28, 0x55, 0x23, 0xe5, 0xf2, 0xf5, 0x23, 0xf5, 0xee, 0x2b, 0x9d, 0x91, 0x56, 0xc6,
156 0x30, 0x91, 0x4d, 0x16, 0x11, 0x6c, 0x48, 0x45, 0xe8, 0x5d, 0x0e, 0x9e, 0x04, 0xc8, 0xb6, 0xdd,
157 0xba, 0x0d, 0xdf, 0x53, 0x56, 0xfa, 0x0b, 0x0b, 0x99, 0x8d, 0xea, 0x5c, 0x45, 0x7d, 0xed, 0xad,
158 0x1f, 0xc5, 0xc1, 0x7d, 0x63, 0x31, 0xf8, 0x32, 0xb5, 0x33, 0xb0, 0xef, 0xce, 0x2e, 0x74, 0x1e,
159 0x77, 0x2a, 0x18, 0x35, 0x3d, 0x6e, 0x01, 0xba, 0xde, 0x21, 0x8e, 0x14, 0x12, 0xc3, 0x0d, 0x43,
160};
161
162static unsigned char pk_dP[] = {
163 0x5a, 0xc8, 0xf7, 0x1a, 0x44, 0xbd, 0x07, 0x24, 0xd8, 0x02, 0x3f, 0xfe, 0xc3, 0xb1, 0x93, 0xa5,
164 0x41, 0xcb, 0x1b, 0xe3, 0xe0, 0x17, 0x54, 0xd4, 0xa0, 0x13, 0x0a, 0x04, 0x71, 0xa5, 0xc0, 0x6f,
165 0x1d, 0xe7, 0x1b, 0xd9, 0x0c, 0x19, 0x64, 0x7e, 0x5c, 0x54, 0xe9, 0xad, 0x77, 0x87, 0x84, 0x8b,
166 0xf4, 0xa4, 0xf8, 0x13, 0x06, 0xdc, 0x83, 0x7e, 0x6e, 0xfe, 0xa2, 0xf7, 0x56, 0x40, 0x19, 0x88,
167 0x2b, 0x3c, 0x53, 0xfe, 0x03, 0xc3, 0x4c, 0x40, 0x31, 0xb2, 0xb4, 0x06, 0x76, 0xc2, 0x00, 0x17,
168 0x37, 0x8e, 0x34, 0xcb, 0x71, 0xab, 0x3e, 0xc8, 0xf3, 0x35, 0x03, 0xfc, 0xdb, 0x15, 0x18, 0x5a,
169 0x38, 0xe4, 0x8d, 0xcb, 0x2b, 0x4d, 0xa0, 0xa8, 0x92, 0x02, 0xc3, 0x15, 0x1e, 0x68, 0x9e, 0x4d,
170 0x7e, 0x23, 0xdc, 0x68, 0x08, 0x31, 0x4e, 0x23, 0x46, 0xc6, 0x15, 0xae, 0x29, 0x46, 0x2f, 0x61,
171};
172
173static unsigned char pk_dQ[] = {
174 0x33, 0x61, 0x9f, 0xae, 0x0c, 0xf6, 0xc6, 0x16, 0x8f, 0xcb, 0xd1, 0xaa, 0xce, 0x87, 0x5a, 0x4d,
175 0xcc, 0xe5, 0x7b, 0x46, 0xb0, 0xc8, 0xe8, 0x40, 0x66, 0x9a, 0x17, 0xb5, 0x5b, 0xa2, 0xf1, 0x67,
176 0x46, 0x11, 0x52, 0x50, 0x51, 0xe6, 0x74, 0x0c, 0xd4, 0xca, 0x46, 0x22, 0xa0, 0xcb, 0xdb, 0x75,
177 0xe5, 0x63, 0x45, 0xd5, 0xca, 0x0a, 0xdd, 0x7b, 0xec, 0x08, 0x53, 0xfa, 0xba, 0x2b, 0xce, 0x03,
178 0x2f, 0x40, 0x31, 0xc0, 0xca, 0x50, 0xbb, 0x7e, 0x07, 0x06, 0x90, 0xd8, 0x5a, 0xa9, 0x32, 0x03,
179 0x76, 0xed, 0xd2, 0x16, 0x35, 0x16, 0x72, 0xcf, 0xbc, 0x4f, 0xa2, 0xaf, 0xf9, 0xee, 0x98, 0x40,
180 0x00, 0x4b, 0x04, 0xfa, 0x8a, 0x0b, 0xdf, 0x14, 0xc1, 0x92, 0x0c, 0xb8, 0x17, 0x82, 0x7a, 0x1b,
181 0xb4, 0xa1, 0xe2, 0xea, 0x6f, 0x94, 0xc5, 0x8c, 0xde, 0x97, 0x5c, 0x19, 0x06, 0x13, 0x9e, 0x73,
182};
183
184static unsigned char pk_I[] = {
185 0x75, 0x40, 0xc6, 0x02, 0x7e, 0x4f, 0xad, 0xdb, 0x95, 0xac, 0x07, 0x8d, 0x80, 0xb6, 0x80, 0x02,
186 0x06, 0xdd, 0xb8, 0x5d, 0x92, 0x65, 0x69, 0x26, 0x86, 0x61, 0x6c, 0x87, 0x4e, 0xe5, 0x03, 0x68,
187 0xc6, 0x10, 0x15, 0x8c, 0x43, 0x3a, 0x45, 0x63, 0x48, 0xb7, 0x8a, 0x8c, 0xa2, 0x2b, 0x34, 0xb6,
188 0x83, 0xfe, 0xa8, 0x10, 0xa5, 0x74, 0xa5, 0xa9, 0x52, 0x42, 0x1f, 0xa0, 0x80, 0x6a, 0xc5, 0x35,
189 0xe8, 0xb8, 0xc2, 0xa0, 0x3f, 0x49, 0x18, 0xcf, 0x0e, 0x54, 0x3c, 0x70, 0x11, 0x11, 0xd3, 0x85,
190 0x8c, 0xb2, 0xe5, 0x74, 0xdf, 0x98, 0xea, 0x6c, 0xc0, 0x5f, 0x7f, 0xff, 0x69, 0xbf, 0x08, 0x8d,
191 0x1b, 0xc4, 0x90, 0xcc, 0xa4, 0xcd, 0xcc, 0x34, 0x58, 0xe5, 0x91, 0x53, 0x3a, 0xd5, 0x39, 0xf4,
192 0xd4, 0x42, 0xc9, 0x17, 0xb2, 0x2c, 0x92, 0x12, 0x37, 0x1b, 0xd3, 0xc5, 0x79, 0xd2, 0x65, 0x61,
193};
194
195static int test_pk(bool verbose)
196{
197 int ret = 1;
198 size_t tmp_len, tmp2_len;
199 unsigned char *tmp, *tmp2;
200 struct crypto_pk *pubk, *privk;
201 unsigned char *msg = message;
202 size_t msg_len = sizeof(pk_N);
203
204 printf("Testing public keys interfaces\n");
205
206 pubk = crypto_pk_open(PK_RSA,
207 pk_N, sizeof(pk_N),
208 pk_E, sizeof(pk_E));
209 if (!pubk) {
210 fprintf(stderr, "ERROR: open public key.\n");
211 return 1;
212 }
213
214 tmp_len = crypto_pk_get_nbits(pubk);
215 if (tmp_len != sizeof(pk_N) * 8) {
216 fprintf(stderr, "ERROR: crypto_pk_get_nbits mismatch.\n");
217 goto close_pub;
218 }
219
220 tmp = crypto_pk_get_parameter(pubk, 0, &tmp_len);
221 if (tmp_len != sizeof(pk_N) || memcmp(tmp, pk_N, tmp_len)) {
b838c4ff 222 fprintf(stderr, "ERROR: crypto_pk_get_parameter(0) Modulus. param len %zd len %zd\n", tmp_len, sizeof(pk_N));
d03fb293
OM
223 free(tmp);
224 goto close_pub;
225 }
226 free(tmp);
227
228 tmp = crypto_pk_get_parameter(pubk, 1, &tmp_len);
229 if (tmp_len != sizeof(pk_E) || memcmp(tmp, pk_E, tmp_len)) {
230 fprintf(stderr, "ERROR: crypto_pk_get_parameter(1) Exponent.\n");
231 free(tmp);
232 goto close_pub;
233 }
234 free(tmp);
235
236 privk = crypto_pk_open_priv(PK_RSA,
237 pk_N, sizeof(pk_N),
238 pk_E, sizeof(pk_E),
239 pk_D, sizeof(pk_D),
240 pk_P, sizeof(pk_P),
241 pk_Q, sizeof(pk_Q),
242 pk_dP, sizeof(pk_dP),
243 pk_dQ, sizeof(pk_dQ),
244 pk_I, sizeof(pk_I));
245 if (!privk) {
246 fprintf(stderr, "ERROR: open private key.\n");
247 goto close_pub;
248 }
249
250
251 tmp_len = crypto_pk_get_nbits(privk);
252 if (tmp_len != sizeof(pk_N) * 8) {
253 fprintf(stderr, "ERROR: crypto_pk_get_nbits mismatch.\n");
254 goto close_pub;
255 }
256
257 tmp = crypto_pk_get_parameter(privk, 0, &tmp_len);
258 if (tmp_len != sizeof(pk_N) || memcmp(tmp, pk_N, tmp_len)) {
b838c4ff 259 fprintf(stderr, "ERROR: crypto_pk_get_parameter(0) Modulus. param len %zd len %zd\n", tmp_len, sizeof(pk_N));
d03fb293
OM
260 free(tmp);
261 goto close;
262 }
263 free(tmp);
264
265 tmp = crypto_pk_get_parameter(privk, 1, &tmp_len);
266 if (tmp_len != sizeof(pk_E) || memcmp(tmp, pk_E, tmp_len)) {
267 fprintf(stderr, "ERROR: crypto_pk_get_parameter(1) Exponent.\n");
268 free(tmp);
269 goto close;
270 }
271 free(tmp);
272
273 tmp = crypto_pk_decrypt(privk, msg, msg_len, &tmp_len);
274 if (!tmp) {
275 fprintf(stderr, "ERROR: crypto_pk_decrypt.\n");
276 goto close;
277 }
278
279 tmp2 = crypto_pk_encrypt(pubk, tmp, tmp_len, &tmp2_len);
280 if (!tmp2) {
281 fprintf(stderr, "ERROR: crypto_pk_encrypt.\n");
282 goto free_tmp;
283 }
284
285 if (tmp2_len == msg_len && !memcmp(tmp2, msg, tmp2_len)) {
286 ret = 0;
287 } else {
288 fprintf(stderr, "ERROR: encrypt-decrypt sequence length or data error.\n");
289 }
290
291 free(tmp2);
292free_tmp:
293 free(tmp);
294
295close:
296 crypto_pk_close(privk);
297close_pub:
298 crypto_pk_close(pubk);
299
300 return ret;
301}
302
303int exec_crypto_test(bool verbose)
304{
305 unsigned int keylengths[] = {1024, 1152, 1408, 1984, 2048, 3072, 4096};
306 int i;
307 int ret;
308 fprintf(stdout, "\n");
309
310 ret = test_pk(verbose);
311 if (ret) {
312 fprintf(stderr, "Crypto raw test: failed\n");
313 return ret;
314 }
315 fprintf(stdout, "Crypto raw test: passed\n\n");
316
317 for (i = 0; i < sizeof(keylengths) / sizeof(keylengths[0]); i++) {
318 unsigned int kl = keylengths[i];
319 ret = test_genkey(kl, message, kl / 8, verbose);
320 if (ret) {
321 fprintf(stderr, "Crypto generate key[%d] test: failed\n", kl);
322 return ret;
323 }
324 }
325
326 return 0;
327}
Impressum, Datenschutz