cryptosoft_xform.c revision 1.12.4.3 1 1.12.4.1 rmind /* $NetBSD: cryptosoft_xform.c,v 1.12.4.3 2011/06/12 00:24:31 rmind Exp $ */
2 1.1 thorpej /* $FreeBSD: src/sys/opencrypto/xform.c,v 1.1.2.1 2002/11/21 23:34:23 sam Exp $ */
3 1.1 thorpej /* $OpenBSD: xform.c,v 1.19 2002/08/16 22:47:25 dhartmei Exp $ */
4 1.1 thorpej
5 1.1 thorpej /*
6 1.1 thorpej * The authors of this code are John Ioannidis (ji (at) tla.org),
7 1.1 thorpej * Angelos D. Keromytis (kermit (at) csd.uch.gr) and
8 1.1 thorpej * Niels Provos (provos (at) physnet.uni-hamburg.de).
9 1.1 thorpej *
10 1.1 thorpej * This code was written by John Ioannidis for BSD/OS in Athens, Greece,
11 1.1 thorpej * in November 1995.
12 1.1 thorpej *
13 1.1 thorpej * Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
14 1.1 thorpej * by Angelos D. Keromytis.
15 1.1 thorpej *
16 1.1 thorpej * Additional transforms and features in 1997 and 1998 by Angelos D. Keromytis
17 1.1 thorpej * and Niels Provos.
18 1.1 thorpej *
19 1.1 thorpej * Additional features in 1999 by Angelos D. Keromytis.
20 1.1 thorpej *
21 1.1 thorpej * Copyright (C) 1995, 1996, 1997, 1998, 1999 by John Ioannidis,
22 1.1 thorpej * Angelos D. Keromytis and Niels Provos.
23 1.1 thorpej *
24 1.1 thorpej * Copyright (C) 2001, Angelos D. Keromytis.
25 1.1 thorpej *
26 1.1 thorpej * Permission to use, copy, and modify this software with or without fee
27 1.1 thorpej * is hereby granted, provided that this entire notice is included in
28 1.1 thorpej * all copies of any software which is or includes a copy or
29 1.1 thorpej * modification of this software.
30 1.1 thorpej * You may use this code under the GNU public license if you so wish. Please
31 1.1 thorpej * contribute changes back to the authors under this freer than GPL license
32 1.1 thorpej * so that we may further the use of strong encryption without limitations to
33 1.1 thorpej * all.
34 1.1 thorpej *
35 1.1 thorpej * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
36 1.1 thorpej * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
37 1.1 thorpej * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
38 1.1 thorpej * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
39 1.1 thorpej * PURPOSE.
40 1.1 thorpej */
41 1.1 thorpej
42 1.1 thorpej #include <sys/cdefs.h>
43 1.12.4.1 rmind __KERNEL_RCSID(1, "$NetBSD: cryptosoft_xform.c,v 1.12.4.3 2011/06/12 00:24:31 rmind Exp $");
44 1.1 thorpej
45 1.1 thorpej #include <crypto/blowfish/blowfish.h>
46 1.1 thorpej #include <crypto/cast128/cast128.h>
47 1.1 thorpej #include <crypto/des/des.h>
48 1.1 thorpej #include <crypto/rijndael/rijndael.h>
49 1.1 thorpej #include <crypto/skipjack/skipjack.h>
50 1.12.4.2 rmind #include <crypto/camellia/camellia.h>
51 1.1 thorpej
52 1.1 thorpej #include <opencrypto/deflate.h>
53 1.1 thorpej
54 1.1 thorpej #include <sys/md5.h>
55 1.3 christos #include <sys/rmd160.h>
56 1.1 thorpej #include <sys/sha1.h>
57 1.12.4.2 rmind #include <sys/sha2.h>
58 1.12.4.2 rmind #include <opencrypto/aesxcbcmac.h>
59 1.12.4.2 rmind #include <opencrypto/gmac.h>
60 1.1 thorpej
61 1.1 thorpej struct swcr_auth_hash {
62 1.12.4.1 rmind const struct auth_hash *auth_hash;
63 1.12.4.2 rmind int ctxsize;
64 1.1 thorpej void (*Init)(void *);
65 1.12.4.2 rmind void (*Setkey)(void *, const uint8_t *, uint16_t);
66 1.12.4.2 rmind void (*Reinit)(void *, const uint8_t *, uint16_t);
67 1.1 thorpej int (*Update)(void *, const uint8_t *, uint16_t);
68 1.1 thorpej void (*Final)(uint8_t *, void *);
69 1.1 thorpej };
70 1.1 thorpej
71 1.1 thorpej struct swcr_enc_xform {
72 1.12.4.1 rmind const struct enc_xform *enc_xform;
73 1.5 christos void (*encrypt)(void *, uint8_t *);
74 1.5 christos void (*decrypt)(void *, uint8_t *);
75 1.12.4.2 rmind int (*setkey)(uint8_t **, const uint8_t *, int);
76 1.1 thorpej void (*zerokey)(uint8_t **);
77 1.12.4.2 rmind void (*reinit)(void *, const uint8_t *, uint8_t *);
78 1.1 thorpej };
79 1.1 thorpej
80 1.1 thorpej struct swcr_comp_algo {
81 1.12.4.1 rmind const struct comp_algo *unused_comp_algo;
82 1.1 thorpej uint32_t (*compress)(uint8_t *, uint32_t, uint8_t **);
83 1.12.4.1 rmind uint32_t (*decompress)(uint8_t *, uint32_t, uint8_t **, int);
84 1.1 thorpej };
85 1.1 thorpej
86 1.5 christos static void null_encrypt(void *, u_int8_t *);
87 1.5 christos static void null_decrypt(void *, u_int8_t *);
88 1.1 thorpej static int null_setkey(u_int8_t **, const u_int8_t *, int);
89 1.1 thorpej static void null_zerokey(u_int8_t **);
90 1.1 thorpej
91 1.1 thorpej static int des1_setkey(u_int8_t **, const u_int8_t *, int);
92 1.1 thorpej static int des3_setkey(u_int8_t **, const u_int8_t *, int);
93 1.1 thorpej static int blf_setkey(u_int8_t **, const u_int8_t *, int);
94 1.1 thorpej static int cast5_setkey(u_int8_t **, const u_int8_t *, int);
95 1.1 thorpej static int skipjack_setkey(u_int8_t **, const u_int8_t *, int);
96 1.1 thorpej static int rijndael128_setkey(u_int8_t **, const u_int8_t *, int);
97 1.12.4.2 rmind static int cml_setkey(u_int8_t **, const u_int8_t *, int);
98 1.12.4.2 rmind static int aes_ctr_setkey(u_int8_t **, const u_int8_t *, int);
99 1.12.4.3 rmind static int aes_gmac_setkey(u_int8_t **, const u_int8_t *, int);
100 1.5 christos static void des1_encrypt(void *, u_int8_t *);
101 1.5 christos static void des3_encrypt(void *, u_int8_t *);
102 1.5 christos static void blf_encrypt(void *, u_int8_t *);
103 1.5 christos static void cast5_encrypt(void *, u_int8_t *);
104 1.5 christos static void skipjack_encrypt(void *, u_int8_t *);
105 1.5 christos static void rijndael128_encrypt(void *, u_int8_t *);
106 1.12.4.2 rmind static void cml_encrypt(void *, u_int8_t *);
107 1.5 christos static void des1_decrypt(void *, u_int8_t *);
108 1.5 christos static void des3_decrypt(void *, u_int8_t *);
109 1.5 christos static void blf_decrypt(void *, u_int8_t *);
110 1.5 christos static void cast5_decrypt(void *, u_int8_t *);
111 1.5 christos static void skipjack_decrypt(void *, u_int8_t *);
112 1.5 christos static void rijndael128_decrypt(void *, u_int8_t *);
113 1.12.4.2 rmind static void cml_decrypt(void *, u_int8_t *);
114 1.12.4.2 rmind static void aes_ctr_crypt(void *, u_int8_t *);
115 1.1 thorpej static void des1_zerokey(u_int8_t **);
116 1.1 thorpej static void des3_zerokey(u_int8_t **);
117 1.1 thorpej static void blf_zerokey(u_int8_t **);
118 1.1 thorpej static void cast5_zerokey(u_int8_t **);
119 1.1 thorpej static void skipjack_zerokey(u_int8_t **);
120 1.1 thorpej static void rijndael128_zerokey(u_int8_t **);
121 1.12.4.2 rmind static void cml_zerokey(u_int8_t **);
122 1.12.4.2 rmind static void aes_ctr_zerokey(u_int8_t **);
123 1.12.4.3 rmind static void aes_gmac_zerokey(u_int8_t **);
124 1.12.4.2 rmind static void aes_ctr_reinit(void *, const u_int8_t *, u_int8_t *);
125 1.12.4.2 rmind static void aes_gcm_reinit(void *, const u_int8_t *, u_int8_t *);
126 1.12.4.3 rmind static void aes_gmac_reinit(void *, const u_int8_t *, u_int8_t *);
127 1.1 thorpej
128 1.1 thorpej static void null_init(void *);
129 1.1 thorpej static int null_update(void *, const u_int8_t *, u_int16_t);
130 1.1 thorpej static void null_final(u_int8_t *, void *);
131 1.1 thorpej
132 1.1 thorpej static int MD5Update_int(void *, const u_int8_t *, u_int16_t);
133 1.1 thorpej static void SHA1Init_int(void *);
134 1.1 thorpej static int SHA1Update_int(void *, const u_int8_t *, u_int16_t);
135 1.1 thorpej static void SHA1Final_int(u_int8_t *, void *);
136 1.1 thorpej
137 1.1 thorpej
138 1.1 thorpej static int RMD160Update_int(void *, const u_int8_t *, u_int16_t);
139 1.1 thorpej static int SHA1Update_int(void *, const u_int8_t *, u_int16_t);
140 1.1 thorpej static void SHA1Final_int(u_int8_t *, void *);
141 1.1 thorpej static int RMD160Update_int(void *, const u_int8_t *, u_int16_t);
142 1.1 thorpej static int SHA256Update_int(void *, const u_int8_t *, u_int16_t);
143 1.1 thorpej static int SHA384Update_int(void *, const u_int8_t *, u_int16_t);
144 1.1 thorpej static int SHA512Update_int(void *, const u_int8_t *, u_int16_t);
145 1.1 thorpej
146 1.1 thorpej static u_int32_t deflate_compress(u_int8_t *, u_int32_t, u_int8_t **);
147 1.12.4.1 rmind static u_int32_t deflate_decompress(u_int8_t *, u_int32_t, u_int8_t **, int);
148 1.12 darran static u_int32_t gzip_compress(u_int8_t *, u_int32_t, u_int8_t **);
149 1.12.4.1 rmind static u_int32_t gzip_decompress(u_int8_t *, u_int32_t, u_int8_t **, int);
150 1.1 thorpej
151 1.1 thorpej /* Encryption instances */
152 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_null = {
153 1.1 thorpej &enc_xform_null,
154 1.1 thorpej null_encrypt,
155 1.1 thorpej null_decrypt,
156 1.1 thorpej null_setkey,
157 1.1 thorpej null_zerokey,
158 1.12.4.2 rmind NULL
159 1.1 thorpej };
160 1.1 thorpej
161 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_des = {
162 1.1 thorpej &enc_xform_des,
163 1.1 thorpej des1_encrypt,
164 1.1 thorpej des1_decrypt,
165 1.1 thorpej des1_setkey,
166 1.1 thorpej des1_zerokey,
167 1.12.4.2 rmind NULL
168 1.1 thorpej };
169 1.1 thorpej
170 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_3des = {
171 1.1 thorpej &enc_xform_3des,
172 1.1 thorpej des3_encrypt,
173 1.1 thorpej des3_decrypt,
174 1.1 thorpej des3_setkey,
175 1.12.4.2 rmind des3_zerokey,
176 1.12.4.2 rmind NULL
177 1.1 thorpej };
178 1.1 thorpej
179 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_blf = {
180 1.1 thorpej &enc_xform_blf,
181 1.1 thorpej blf_encrypt,
182 1.1 thorpej blf_decrypt,
183 1.1 thorpej blf_setkey,
184 1.12.4.2 rmind blf_zerokey,
185 1.12.4.2 rmind NULL
186 1.1 thorpej };
187 1.1 thorpej
188 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_cast5 = {
189 1.1 thorpej &enc_xform_cast5,
190 1.1 thorpej cast5_encrypt,
191 1.1 thorpej cast5_decrypt,
192 1.1 thorpej cast5_setkey,
193 1.12.4.2 rmind cast5_zerokey,
194 1.12.4.2 rmind NULL
195 1.1 thorpej };
196 1.1 thorpej
197 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_skipjack = {
198 1.1 thorpej &enc_xform_skipjack,
199 1.1 thorpej skipjack_encrypt,
200 1.1 thorpej skipjack_decrypt,
201 1.1 thorpej skipjack_setkey,
202 1.12.4.2 rmind skipjack_zerokey,
203 1.12.4.2 rmind NULL
204 1.1 thorpej };
205 1.1 thorpej
206 1.1 thorpej static const struct swcr_enc_xform swcr_enc_xform_rijndael128 = {
207 1.1 thorpej &enc_xform_rijndael128,
208 1.1 thorpej rijndael128_encrypt,
209 1.1 thorpej rijndael128_decrypt,
210 1.1 thorpej rijndael128_setkey,
211 1.1 thorpej rijndael128_zerokey,
212 1.12.4.2 rmind NULL
213 1.1 thorpej };
214 1.1 thorpej
215 1.12.4.2 rmind static const struct swcr_enc_xform swcr_enc_xform_aes_ctr = {
216 1.12.4.2 rmind &enc_xform_aes_ctr,
217 1.12.4.2 rmind aes_ctr_crypt,
218 1.12.4.2 rmind aes_ctr_crypt,
219 1.12.4.2 rmind aes_ctr_setkey,
220 1.12.4.2 rmind aes_ctr_zerokey,
221 1.12.4.2 rmind aes_ctr_reinit
222 1.12.4.2 rmind };
223 1.12.4.2 rmind
224 1.12.4.2 rmind static const struct swcr_enc_xform swcr_enc_xform_aes_gcm = {
225 1.12.4.2 rmind &enc_xform_aes_gcm,
226 1.12.4.2 rmind aes_ctr_crypt,
227 1.12.4.2 rmind aes_ctr_crypt,
228 1.12.4.2 rmind aes_ctr_setkey,
229 1.12.4.2 rmind aes_ctr_zerokey,
230 1.12.4.2 rmind aes_gcm_reinit
231 1.12.4.2 rmind };
232 1.12.4.2 rmind
233 1.12.4.2 rmind static const struct swcr_enc_xform swcr_enc_xform_aes_gmac = {
234 1.12.4.2 rmind &enc_xform_aes_gmac,
235 1.1 thorpej NULL,
236 1.1 thorpej NULL,
237 1.12.4.3 rmind aes_gmac_setkey,
238 1.12.4.3 rmind aes_gmac_zerokey,
239 1.12.4.3 rmind aes_gmac_reinit
240 1.12.4.2 rmind };
241 1.12.4.2 rmind
242 1.12.4.2 rmind static const struct swcr_enc_xform swcr_enc_xform_camellia = {
243 1.12.4.2 rmind &enc_xform_camellia,
244 1.12.4.2 rmind cml_encrypt,
245 1.12.4.2 rmind cml_decrypt,
246 1.12.4.2 rmind cml_setkey,
247 1.12.4.2 rmind cml_zerokey,
248 1.12.4.2 rmind NULL
249 1.1 thorpej };
250 1.1 thorpej
251 1.1 thorpej /* Authentication instances */
252 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_null = {
253 1.12.4.2 rmind &auth_hash_null, sizeof(int), /* NB: context isn't used */
254 1.12.4.2 rmind null_init, NULL, NULL, null_update, null_final
255 1.1 thorpej };
256 1.1 thorpej
257 1.7 tls static const struct swcr_auth_hash swcr_auth_hash_hmac_md5 = {
258 1.12.4.2 rmind &auth_hash_hmac_md5, sizeof(MD5_CTX),
259 1.12.4.2 rmind (void (*) (void *)) MD5Init, NULL, NULL, MD5Update_int,
260 1.7 tls (void (*) (u_int8_t *, void *)) MD5Final
261 1.7 tls };
262 1.7 tls
263 1.7 tls static const struct swcr_auth_hash swcr_auth_hash_hmac_sha1 = {
264 1.12.4.2 rmind &auth_hash_hmac_sha1, sizeof(SHA1_CTX),
265 1.12.4.2 rmind SHA1Init_int, NULL, NULL, SHA1Update_int, SHA1Final_int
266 1.7 tls };
267 1.7 tls
268 1.7 tls static const struct swcr_auth_hash swcr_auth_hash_hmac_ripemd_160 = {
269 1.12.4.2 rmind &auth_hash_hmac_ripemd_160, sizeof(RMD160_CTX),
270 1.12.4.2 rmind (void (*)(void *)) RMD160Init, NULL, NULL, RMD160Update_int,
271 1.7 tls (void (*)(u_int8_t *, void *)) RMD160Final
272 1.7 tls };
273 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_md5_96 = {
274 1.12.4.2 rmind &auth_hash_hmac_md5_96, sizeof(MD5_CTX),
275 1.12.4.2 rmind (void (*) (void *)) MD5Init, NULL, NULL, MD5Update_int,
276 1.1 thorpej (void (*) (u_int8_t *, void *)) MD5Final
277 1.1 thorpej };
278 1.1 thorpej
279 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_sha1_96 = {
280 1.12.4.2 rmind &auth_hash_hmac_sha1_96, sizeof(SHA1_CTX),
281 1.12.4.2 rmind SHA1Init_int, NULL, NULL, SHA1Update_int, SHA1Final_int
282 1.1 thorpej };
283 1.1 thorpej
284 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_ripemd_160_96 = {
285 1.12.4.2 rmind &auth_hash_hmac_ripemd_160_96, sizeof(RMD160_CTX),
286 1.12.4.2 rmind (void (*)(void *)) RMD160Init, NULL, NULL, RMD160Update_int,
287 1.1 thorpej (void (*)(u_int8_t *, void *)) RMD160Final
288 1.1 thorpej };
289 1.1 thorpej
290 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_key_md5 = {
291 1.12.4.2 rmind &auth_hash_key_md5, sizeof(MD5_CTX),
292 1.12.4.2 rmind (void (*)(void *)) MD5Init, NULL, NULL, MD5Update_int,
293 1.1 thorpej (void (*)(u_int8_t *, void *)) MD5Final
294 1.1 thorpej };
295 1.1 thorpej
296 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_key_sha1 = {
297 1.12.4.2 rmind &auth_hash_key_sha1, sizeof(SHA1_CTX),
298 1.12.4.2 rmind SHA1Init_int, NULL, NULL, SHA1Update_int, SHA1Final_int
299 1.1 thorpej };
300 1.1 thorpej
301 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_md5 = {
302 1.12.4.2 rmind &auth_hash_md5, sizeof(MD5_CTX),
303 1.12.4.2 rmind (void (*) (void *)) MD5Init, NULL, NULL, MD5Update_int,
304 1.1 thorpej (void (*) (u_int8_t *, void *)) MD5Final
305 1.1 thorpej };
306 1.1 thorpej
307 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_sha1 = {
308 1.12.4.2 rmind &auth_hash_sha1, sizeof(SHA1_CTX),
309 1.12.4.2 rmind (void (*)(void *)) SHA1Init, NULL, NULL, SHA1Update_int,
310 1.1 thorpej (void (*)(u_int8_t *, void *)) SHA1Final
311 1.1 thorpej };
312 1.1 thorpej
313 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_sha2_256 = {
314 1.12.4.2 rmind &auth_hash_hmac_sha2_256, sizeof(SHA256_CTX),
315 1.12.4.2 rmind (void (*)(void *)) SHA256_Init, NULL, NULL, SHA256Update_int,
316 1.1 thorpej (void (*)(u_int8_t *, void *)) SHA256_Final
317 1.1 thorpej };
318 1.1 thorpej
319 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_sha2_384 = {
320 1.12.4.2 rmind &auth_hash_hmac_sha2_384, sizeof(SHA384_CTX),
321 1.12.4.2 rmind (void (*)(void *)) SHA384_Init, NULL, NULL, SHA384Update_int,
322 1.1 thorpej (void (*)(u_int8_t *, void *)) SHA384_Final
323 1.1 thorpej };
324 1.1 thorpej
325 1.1 thorpej static const struct swcr_auth_hash swcr_auth_hash_hmac_sha2_512 = {
326 1.12.4.2 rmind &auth_hash_hmac_sha2_512, sizeof(SHA512_CTX),
327 1.12.4.2 rmind (void (*)(void *)) SHA512_Init, NULL, NULL, SHA512Update_int,
328 1.1 thorpej (void (*)(u_int8_t *, void *)) SHA512_Final
329 1.1 thorpej };
330 1.1 thorpej
331 1.12.4.2 rmind static const struct swcr_auth_hash swcr_auth_hash_aes_xcbc_mac = {
332 1.12.4.2 rmind &auth_hash_aes_xcbc_mac_96, sizeof(aesxcbc_ctx),
333 1.12.4.2 rmind null_init,
334 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))aes_xcbc_mac_init,
335 1.12.4.2 rmind NULL, aes_xcbc_mac_loop, aes_xcbc_mac_result
336 1.12.4.2 rmind };
337 1.12.4.2 rmind
338 1.12.4.2 rmind static const struct swcr_auth_hash swcr_auth_hash_gmac_aes_128 = {
339 1.12.4.2 rmind &auth_hash_gmac_aes_128, sizeof(AES_GMAC_CTX),
340 1.12.4.2 rmind (void (*)(void *))AES_GMAC_Init,
341 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Setkey,
342 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Reinit,
343 1.12.4.2 rmind (int (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Update,
344 1.12.4.2 rmind (void (*)(u_int8_t *, void *))AES_GMAC_Final
345 1.12.4.2 rmind };
346 1.12.4.2 rmind
347 1.12.4.2 rmind static const struct swcr_auth_hash swcr_auth_hash_gmac_aes_192 = {
348 1.12.4.2 rmind &auth_hash_gmac_aes_192, sizeof(AES_GMAC_CTX),
349 1.12.4.2 rmind (void (*)(void *))AES_GMAC_Init,
350 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Setkey,
351 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Reinit,
352 1.12.4.2 rmind (int (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Update,
353 1.12.4.2 rmind (void (*)(u_int8_t *, void *))AES_GMAC_Final
354 1.12.4.2 rmind };
355 1.12.4.2 rmind
356 1.12.4.2 rmind static const struct swcr_auth_hash swcr_auth_hash_gmac_aes_256 = {
357 1.12.4.2 rmind &auth_hash_gmac_aes_256, sizeof(AES_GMAC_CTX),
358 1.12.4.2 rmind (void (*)(void *))AES_GMAC_Init,
359 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Setkey,
360 1.12.4.2 rmind (void (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Reinit,
361 1.12.4.2 rmind (int (*)(void *, const u_int8_t *, u_int16_t))AES_GMAC_Update,
362 1.12.4.2 rmind (void (*)(u_int8_t *, void *))AES_GMAC_Final
363 1.12.4.2 rmind };
364 1.12.4.2 rmind
365 1.1 thorpej /* Compression instance */
366 1.1 thorpej static const struct swcr_comp_algo swcr_comp_algo_deflate = {
367 1.1 thorpej &comp_algo_deflate,
368 1.1 thorpej deflate_compress,
369 1.1 thorpej deflate_decompress
370 1.1 thorpej };
371 1.1 thorpej
372 1.12.4.1 rmind static const struct swcr_comp_algo swcr_comp_algo_deflate_nogrow = {
373 1.12.4.1 rmind &comp_algo_deflate_nogrow,
374 1.12.4.1 rmind deflate_compress,
375 1.12.4.1 rmind deflate_decompress
376 1.12.4.1 rmind };
377 1.12.4.1 rmind
378 1.12 darran static const struct swcr_comp_algo swcr_comp_algo_gzip = {
379 1.12 darran &comp_algo_deflate,
380 1.12 darran gzip_compress,
381 1.12 darran gzip_decompress
382 1.12 darran };
383 1.12 darran
384 1.1 thorpej /*
385 1.1 thorpej * Encryption wrapper routines.
386 1.1 thorpej */
387 1.1 thorpej static void
388 1.5 christos null_encrypt(void *key, u_int8_t *blk)
389 1.1 thorpej {
390 1.1 thorpej }
391 1.1 thorpej static void
392 1.5 christos null_decrypt(void *key, u_int8_t *blk)
393 1.1 thorpej {
394 1.1 thorpej }
395 1.1 thorpej static int
396 1.4 christos null_setkey(u_int8_t **sched, const u_int8_t *key, int len)
397 1.1 thorpej {
398 1.1 thorpej *sched = NULL;
399 1.1 thorpej return 0;
400 1.1 thorpej }
401 1.1 thorpej static void
402 1.1 thorpej null_zerokey(u_int8_t **sched)
403 1.1 thorpej {
404 1.1 thorpej *sched = NULL;
405 1.1 thorpej }
406 1.1 thorpej
407 1.1 thorpej static void
408 1.5 christos des1_encrypt(void *key, u_int8_t *blk)
409 1.1 thorpej {
410 1.1 thorpej des_cblock *cb = (des_cblock *) blk;
411 1.1 thorpej des_key_schedule *p = (des_key_schedule *) key;
412 1.1 thorpej
413 1.1 thorpej des_ecb_encrypt(cb, cb, p[0], DES_ENCRYPT);
414 1.1 thorpej }
415 1.1 thorpej
416 1.1 thorpej static void
417 1.5 christos des1_decrypt(void *key, u_int8_t *blk)
418 1.1 thorpej {
419 1.1 thorpej des_cblock *cb = (des_cblock *) blk;
420 1.1 thorpej des_key_schedule *p = (des_key_schedule *) key;
421 1.1 thorpej
422 1.1 thorpej des_ecb_encrypt(cb, cb, p[0], DES_DECRYPT);
423 1.1 thorpej }
424 1.1 thorpej
425 1.1 thorpej static int
426 1.4 christos des1_setkey(u_int8_t **sched, const u_int8_t *key, int len)
427 1.1 thorpej {
428 1.1 thorpej des_key_schedule *p;
429 1.1 thorpej int err;
430 1.1 thorpej
431 1.9 cegger p = malloc(sizeof (des_key_schedule),
432 1.8 tls M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
433 1.1 thorpej if (p != NULL) {
434 1.1 thorpej des_set_key((des_cblock *)__UNCONST(key), p[0]);
435 1.1 thorpej err = 0;
436 1.1 thorpej } else
437 1.1 thorpej err = ENOMEM;
438 1.1 thorpej *sched = (u_int8_t *) p;
439 1.1 thorpej return err;
440 1.1 thorpej }
441 1.1 thorpej
442 1.1 thorpej static void
443 1.1 thorpej des1_zerokey(u_int8_t **sched)
444 1.1 thorpej {
445 1.11 cegger memset(*sched, 0, sizeof (des_key_schedule));
446 1.9 cegger free(*sched, M_CRYPTO_DATA);
447 1.1 thorpej *sched = NULL;
448 1.1 thorpej }
449 1.1 thorpej
450 1.1 thorpej static void
451 1.5 christos des3_encrypt(void *key, u_int8_t *blk)
452 1.1 thorpej {
453 1.1 thorpej des_cblock *cb = (des_cblock *) blk;
454 1.1 thorpej des_key_schedule *p = (des_key_schedule *) key;
455 1.1 thorpej
456 1.1 thorpej des_ecb3_encrypt(cb, cb, p[0], p[1], p[2], DES_ENCRYPT);
457 1.1 thorpej }
458 1.1 thorpej
459 1.1 thorpej static void
460 1.5 christos des3_decrypt(void *key, u_int8_t *blk)
461 1.1 thorpej {
462 1.1 thorpej des_cblock *cb = (des_cblock *) blk;
463 1.1 thorpej des_key_schedule *p = (des_key_schedule *) key;
464 1.1 thorpej
465 1.1 thorpej des_ecb3_encrypt(cb, cb, p[0], p[1], p[2], DES_DECRYPT);
466 1.1 thorpej }
467 1.1 thorpej
468 1.1 thorpej static int
469 1.4 christos des3_setkey(u_int8_t **sched, const u_int8_t *key, int len)
470 1.1 thorpej {
471 1.1 thorpej des_key_schedule *p;
472 1.1 thorpej int err;
473 1.1 thorpej
474 1.9 cegger p = malloc(3*sizeof (des_key_schedule),
475 1.8 tls M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
476 1.1 thorpej if (p != NULL) {
477 1.1 thorpej des_set_key((des_cblock *)__UNCONST(key + 0), p[0]);
478 1.1 thorpej des_set_key((des_cblock *)__UNCONST(key + 8), p[1]);
479 1.1 thorpej des_set_key((des_cblock *)__UNCONST(key + 16), p[2]);
480 1.1 thorpej err = 0;
481 1.1 thorpej } else
482 1.1 thorpej err = ENOMEM;
483 1.1 thorpej *sched = (u_int8_t *) p;
484 1.1 thorpej return err;
485 1.1 thorpej }
486 1.1 thorpej
487 1.1 thorpej static void
488 1.1 thorpej des3_zerokey(u_int8_t **sched)
489 1.1 thorpej {
490 1.11 cegger memset(*sched, 0, 3*sizeof (des_key_schedule));
491 1.9 cegger free(*sched, M_CRYPTO_DATA);
492 1.1 thorpej *sched = NULL;
493 1.1 thorpej }
494 1.1 thorpej
495 1.1 thorpej static void
496 1.5 christos blf_encrypt(void *key, u_int8_t *blk)
497 1.1 thorpej {
498 1.1 thorpej
499 1.1 thorpej BF_ecb_encrypt(blk, blk, (BF_KEY *)key, 1);
500 1.1 thorpej }
501 1.1 thorpej
502 1.1 thorpej static void
503 1.5 christos blf_decrypt(void *key, u_int8_t *blk)
504 1.1 thorpej {
505 1.1 thorpej
506 1.1 thorpej BF_ecb_encrypt(blk, blk, (BF_KEY *)key, 0);
507 1.1 thorpej }
508 1.1 thorpej
509 1.1 thorpej static int
510 1.1 thorpej blf_setkey(u_int8_t **sched, const u_int8_t *key, int len)
511 1.1 thorpej {
512 1.1 thorpej int err;
513 1.1 thorpej
514 1.9 cegger *sched = malloc(sizeof(BF_KEY),
515 1.8 tls M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
516 1.1 thorpej if (*sched != NULL) {
517 1.1 thorpej BF_set_key((BF_KEY *) *sched, len, key);
518 1.1 thorpej err = 0;
519 1.1 thorpej } else
520 1.1 thorpej err = ENOMEM;
521 1.1 thorpej return err;
522 1.1 thorpej }
523 1.1 thorpej
524 1.1 thorpej static void
525 1.1 thorpej blf_zerokey(u_int8_t **sched)
526 1.1 thorpej {
527 1.11 cegger memset(*sched, 0, sizeof(BF_KEY));
528 1.9 cegger free(*sched, M_CRYPTO_DATA);
529 1.1 thorpej *sched = NULL;
530 1.1 thorpej }
531 1.1 thorpej
532 1.1 thorpej static void
533 1.5 christos cast5_encrypt(void *key, u_int8_t *blk)
534 1.1 thorpej {
535 1.1 thorpej cast128_encrypt((cast128_key *) key, blk, blk);
536 1.1 thorpej }
537 1.1 thorpej
538 1.1 thorpej static void
539 1.5 christos cast5_decrypt(void *key, u_int8_t *blk)
540 1.1 thorpej {
541 1.1 thorpej cast128_decrypt((cast128_key *) key, blk, blk);
542 1.1 thorpej }
543 1.1 thorpej
544 1.1 thorpej static int
545 1.1 thorpej cast5_setkey(u_int8_t **sched, const u_int8_t *key, int len)
546 1.1 thorpej {
547 1.1 thorpej int err;
548 1.1 thorpej
549 1.9 cegger *sched = malloc(sizeof(cast128_key), M_CRYPTO_DATA,
550 1.8 tls M_NOWAIT|M_ZERO);
551 1.1 thorpej if (*sched != NULL) {
552 1.1 thorpej cast128_setkey((cast128_key *)*sched, key, len);
553 1.1 thorpej err = 0;
554 1.1 thorpej } else
555 1.1 thorpej err = ENOMEM;
556 1.1 thorpej return err;
557 1.1 thorpej }
558 1.1 thorpej
559 1.1 thorpej static void
560 1.1 thorpej cast5_zerokey(u_int8_t **sched)
561 1.1 thorpej {
562 1.11 cegger memset(*sched, 0, sizeof(cast128_key));
563 1.9 cegger free(*sched, M_CRYPTO_DATA);
564 1.1 thorpej *sched = NULL;
565 1.1 thorpej }
566 1.1 thorpej
567 1.1 thorpej static void
568 1.5 christos skipjack_encrypt(void *key, u_int8_t *blk)
569 1.1 thorpej {
570 1.1 thorpej skipjack_forwards(blk, blk, (u_int8_t **) key);
571 1.1 thorpej }
572 1.1 thorpej
573 1.1 thorpej static void
574 1.5 christos skipjack_decrypt(void *key, u_int8_t *blk)
575 1.1 thorpej {
576 1.1 thorpej skipjack_backwards(blk, blk, (u_int8_t **) key);
577 1.1 thorpej }
578 1.1 thorpej
579 1.1 thorpej static int
580 1.4 christos skipjack_setkey(u_int8_t **sched, const u_int8_t *key, int len)
581 1.1 thorpej {
582 1.1 thorpej int err;
583 1.1 thorpej
584 1.1 thorpej /* NB: allocate all the memory that's needed at once */
585 1.1 thorpej /* XXX assumes bytes are aligned on sizeof(u_char) == 1 boundaries.
586 1.1 thorpej * Will this break a pdp-10, Cray-1, or GE-645 port?
587 1.1 thorpej */
588 1.9 cegger *sched = malloc(10 * (sizeof(u_int8_t *) + 0x100),
589 1.8 tls M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
590 1.1 thorpej
591 1.1 thorpej if (*sched != NULL) {
592 1.1 thorpej
593 1.1 thorpej u_int8_t** key_tables = (u_int8_t**) *sched;
594 1.1 thorpej u_int8_t* table = (u_int8_t*) &key_tables[10];
595 1.1 thorpej int k;
596 1.1 thorpej
597 1.1 thorpej for (k = 0; k < 10; k++) {
598 1.1 thorpej key_tables[k] = table;
599 1.1 thorpej table += 0x100;
600 1.1 thorpej }
601 1.1 thorpej subkey_table_gen(key, (u_int8_t **) *sched);
602 1.1 thorpej err = 0;
603 1.1 thorpej } else
604 1.1 thorpej err = ENOMEM;
605 1.1 thorpej return err;
606 1.1 thorpej }
607 1.1 thorpej
608 1.1 thorpej static void
609 1.1 thorpej skipjack_zerokey(u_int8_t **sched)
610 1.1 thorpej {
611 1.11 cegger memset(*sched, 0, 10 * (sizeof(u_int8_t *) + 0x100));
612 1.9 cegger free(*sched, M_CRYPTO_DATA);
613 1.1 thorpej *sched = NULL;
614 1.1 thorpej }
615 1.1 thorpej
616 1.1 thorpej static void
617 1.5 christos rijndael128_encrypt(void *key, u_int8_t *blk)
618 1.1 thorpej {
619 1.1 thorpej rijndael_encrypt((rijndael_ctx *) key, (u_char *) blk, (u_char *) blk);
620 1.1 thorpej }
621 1.1 thorpej
622 1.1 thorpej static void
623 1.5 christos rijndael128_decrypt(void *key, u_int8_t *blk)
624 1.1 thorpej {
625 1.1 thorpej rijndael_decrypt((rijndael_ctx *) key, (u_char *) blk,
626 1.1 thorpej (u_char *) blk);
627 1.1 thorpej }
628 1.1 thorpej
629 1.1 thorpej static int
630 1.1 thorpej rijndael128_setkey(u_int8_t **sched, const u_int8_t *key, int len)
631 1.1 thorpej {
632 1.1 thorpej int err;
633 1.1 thorpej
634 1.12.4.2 rmind if (len != 16 && len != 24 && len != 32)
635 1.12.4.2 rmind return EINVAL;
636 1.9 cegger *sched = malloc(sizeof(rijndael_ctx), M_CRYPTO_DATA,
637 1.8 tls M_NOWAIT|M_ZERO);
638 1.1 thorpej if (*sched != NULL) {
639 1.1 thorpej rijndael_set_key((rijndael_ctx *) *sched, key, len * 8);
640 1.1 thorpej err = 0;
641 1.1 thorpej } else
642 1.1 thorpej err = ENOMEM;
643 1.1 thorpej return err;
644 1.1 thorpej }
645 1.1 thorpej
646 1.1 thorpej static void
647 1.1 thorpej rijndael128_zerokey(u_int8_t **sched)
648 1.1 thorpej {
649 1.11 cegger memset(*sched, 0, sizeof(rijndael_ctx));
650 1.9 cegger free(*sched, M_CRYPTO_DATA);
651 1.1 thorpej *sched = NULL;
652 1.1 thorpej }
653 1.1 thorpej
654 1.12.4.2 rmind static void
655 1.12.4.2 rmind cml_encrypt(void *key, u_int8_t *blk)
656 1.12.4.2 rmind {
657 1.12.4.2 rmind
658 1.12.4.2 rmind camellia_encrypt(key, blk, blk);
659 1.12.4.2 rmind }
660 1.12.4.2 rmind
661 1.12.4.2 rmind static void
662 1.12.4.2 rmind cml_decrypt(void *key, u_int8_t *blk)
663 1.12.4.2 rmind {
664 1.12.4.2 rmind
665 1.12.4.2 rmind camellia_decrypt(key, blk, blk);
666 1.12.4.2 rmind }
667 1.12.4.2 rmind
668 1.12.4.2 rmind static int
669 1.12.4.2 rmind cml_setkey(u_int8_t **sched, const u_int8_t *key, int len)
670 1.12.4.2 rmind {
671 1.12.4.2 rmind int err;
672 1.12.4.2 rmind
673 1.12.4.2 rmind if (len != 16 && len != 24 && len != 32)
674 1.12.4.2 rmind return (EINVAL);
675 1.12.4.2 rmind *sched = malloc(sizeof(camellia_ctx), M_CRYPTO_DATA,
676 1.12.4.2 rmind M_NOWAIT|M_ZERO);
677 1.12.4.2 rmind if (*sched != NULL) {
678 1.12.4.2 rmind camellia_set_key((camellia_ctx *) *sched, key, len * 8);
679 1.12.4.2 rmind err = 0;
680 1.12.4.2 rmind } else
681 1.12.4.2 rmind err = ENOMEM;
682 1.12.4.2 rmind return err;
683 1.12.4.2 rmind }
684 1.12.4.2 rmind
685 1.12.4.2 rmind static void
686 1.12.4.2 rmind cml_zerokey(u_int8_t **sched)
687 1.12.4.2 rmind {
688 1.12.4.2 rmind
689 1.12.4.2 rmind memset(*sched, 0, sizeof(camellia_ctx));
690 1.12.4.2 rmind free(*sched, M_CRYPTO_DATA);
691 1.12.4.2 rmind *sched = NULL;
692 1.12.4.2 rmind }
693 1.12.4.2 rmind
694 1.12.4.2 rmind #define AESCTR_NONCESIZE 4
695 1.12.4.2 rmind #define AESCTR_IVSIZE 8
696 1.12.4.2 rmind #define AESCTR_BLOCKSIZE 16
697 1.12.4.2 rmind
698 1.12.4.2 rmind struct aes_ctr_ctx {
699 1.12.4.2 rmind /* need only encryption half */
700 1.12.4.2 rmind u_int32_t ac_ek[4*(RIJNDAEL_MAXNR + 1)];
701 1.12.4.2 rmind u_int8_t ac_block[AESCTR_BLOCKSIZE];
702 1.12.4.2 rmind int ac_nr;
703 1.12.4.2 rmind struct {
704 1.12.4.2 rmind u_int64_t lastiv;
705 1.12.4.2 rmind } ivgenctx;
706 1.12.4.2 rmind };
707 1.12.4.2 rmind
708 1.12.4.2 rmind static void
709 1.12.4.2 rmind aes_ctr_crypt(void *key, u_int8_t *blk)
710 1.12.4.2 rmind {
711 1.12.4.2 rmind struct aes_ctr_ctx *ctx;
712 1.12.4.2 rmind u_int8_t keystream[AESCTR_BLOCKSIZE];
713 1.12.4.2 rmind int i;
714 1.12.4.2 rmind
715 1.12.4.2 rmind ctx = key;
716 1.12.4.2 rmind /* increment counter */
717 1.12.4.2 rmind for (i = AESCTR_BLOCKSIZE - 1;
718 1.12.4.2 rmind i >= AESCTR_NONCESIZE + AESCTR_IVSIZE; i--)
719 1.12.4.2 rmind if (++ctx->ac_block[i]) /* continue on overflow */
720 1.12.4.2 rmind break;
721 1.12.4.2 rmind rijndaelEncrypt(ctx->ac_ek, ctx->ac_nr, ctx->ac_block, keystream);
722 1.12.4.2 rmind for (i = 0; i < AESCTR_BLOCKSIZE; i++)
723 1.12.4.2 rmind blk[i] ^= keystream[i];
724 1.12.4.2 rmind memset(keystream, 0, sizeof(keystream));
725 1.12.4.2 rmind }
726 1.12.4.2 rmind
727 1.12.4.2 rmind int
728 1.12.4.2 rmind aes_ctr_setkey(u_int8_t **sched, const u_int8_t *key, int len)
729 1.12.4.2 rmind {
730 1.12.4.2 rmind struct aes_ctr_ctx *ctx;
731 1.12.4.2 rmind
732 1.12.4.2 rmind if (len < AESCTR_NONCESIZE)
733 1.12.4.2 rmind return EINVAL;
734 1.12.4.2 rmind
735 1.12.4.2 rmind ctx = malloc(sizeof(struct aes_ctr_ctx), M_CRYPTO_DATA,
736 1.12.4.2 rmind M_NOWAIT|M_ZERO);
737 1.12.4.2 rmind if (!ctx)
738 1.12.4.2 rmind return ENOMEM;
739 1.12.4.2 rmind ctx->ac_nr = rijndaelKeySetupEnc(ctx->ac_ek, (const u_char *)key,
740 1.12.4.2 rmind (len - AESCTR_NONCESIZE) * 8);
741 1.12.4.2 rmind if (!ctx->ac_nr) { /* wrong key len */
742 1.12.4.2 rmind aes_ctr_zerokey((u_int8_t **)&ctx);
743 1.12.4.2 rmind return EINVAL;
744 1.12.4.2 rmind }
745 1.12.4.2 rmind memcpy(ctx->ac_block, key + len - AESCTR_NONCESIZE, AESCTR_NONCESIZE);
746 1.12.4.2 rmind /* random start value for simple counter */
747 1.12.4.2 rmind arc4randbytes(&ctx->ivgenctx.lastiv, sizeof(ctx->ivgenctx.lastiv));
748 1.12.4.2 rmind *sched = (void *)ctx;
749 1.12.4.2 rmind return 0;
750 1.12.4.2 rmind }
751 1.12.4.2 rmind
752 1.12.4.2 rmind void
753 1.12.4.2 rmind aes_ctr_zerokey(u_int8_t **sched)
754 1.12.4.2 rmind {
755 1.12.4.2 rmind
756 1.12.4.2 rmind memset(*sched, 0, sizeof(struct aes_ctr_ctx));
757 1.12.4.2 rmind free(*sched, M_CRYPTO_DATA);
758 1.12.4.2 rmind *sched = NULL;
759 1.12.4.2 rmind }
760 1.12.4.2 rmind
761 1.12.4.2 rmind void
762 1.12.4.2 rmind aes_ctr_reinit(void *key, const u_int8_t *iv, u_int8_t *ivout)
763 1.12.4.2 rmind {
764 1.12.4.2 rmind struct aes_ctr_ctx *ctx = key;
765 1.12.4.2 rmind
766 1.12.4.2 rmind if (!iv) {
767 1.12.4.2 rmind ctx->ivgenctx.lastiv++;
768 1.12.4.2 rmind iv = (const u_int8_t *)&ctx->ivgenctx.lastiv;
769 1.12.4.2 rmind }
770 1.12.4.2 rmind if (ivout)
771 1.12.4.2 rmind memcpy(ivout, iv, AESCTR_IVSIZE);
772 1.12.4.2 rmind memcpy(ctx->ac_block + AESCTR_NONCESIZE, iv, AESCTR_IVSIZE);
773 1.12.4.2 rmind /* reset counter */
774 1.12.4.2 rmind memset(ctx->ac_block + AESCTR_NONCESIZE + AESCTR_IVSIZE, 0, 4);
775 1.12.4.2 rmind }
776 1.12.4.2 rmind
777 1.12.4.2 rmind void
778 1.12.4.2 rmind aes_gcm_reinit(void *key, const u_int8_t *iv, u_int8_t *ivout)
779 1.12.4.2 rmind {
780 1.12.4.2 rmind struct aes_ctr_ctx *ctx = key;
781 1.12.4.2 rmind
782 1.12.4.2 rmind if (!iv) {
783 1.12.4.2 rmind ctx->ivgenctx.lastiv++;
784 1.12.4.2 rmind iv = (const u_int8_t *)&ctx->ivgenctx.lastiv;
785 1.12.4.2 rmind }
786 1.12.4.2 rmind if (ivout)
787 1.12.4.2 rmind memcpy(ivout, iv, AESCTR_IVSIZE);
788 1.12.4.2 rmind memcpy(ctx->ac_block + AESCTR_NONCESIZE, iv, AESCTR_IVSIZE);
789 1.12.4.2 rmind /* reset counter */
790 1.12.4.2 rmind memset(ctx->ac_block + AESCTR_NONCESIZE + AESCTR_IVSIZE, 0, 4);
791 1.12.4.2 rmind ctx->ac_block[AESCTR_BLOCKSIZE - 1] = 1; /* GCM starts with 1 */
792 1.12.4.2 rmind }
793 1.12.4.2 rmind
794 1.12.4.3 rmind struct aes_gmac_ctx {
795 1.12.4.3 rmind struct {
796 1.12.4.3 rmind u_int64_t lastiv;
797 1.12.4.3 rmind } ivgenctx;
798 1.12.4.3 rmind };
799 1.12.4.3 rmind
800 1.12.4.3 rmind int
801 1.12.4.3 rmind aes_gmac_setkey(u_int8_t **sched, const u_int8_t *key, int len)
802 1.12.4.3 rmind {
803 1.12.4.3 rmind struct aes_gmac_ctx *ctx;
804 1.12.4.3 rmind
805 1.12.4.3 rmind ctx = malloc(sizeof(struct aes_gmac_ctx), M_CRYPTO_DATA,
806 1.12.4.3 rmind M_NOWAIT|M_ZERO);
807 1.12.4.3 rmind if (!ctx)
808 1.12.4.3 rmind return ENOMEM;
809 1.12.4.3 rmind
810 1.12.4.3 rmind /* random start value for simple counter */
811 1.12.4.3 rmind arc4randbytes(&ctx->ivgenctx.lastiv, sizeof(ctx->ivgenctx.lastiv));
812 1.12.4.3 rmind *sched = (void *)ctx;
813 1.12.4.3 rmind return 0;
814 1.12.4.3 rmind }
815 1.12.4.3 rmind
816 1.12.4.3 rmind void
817 1.12.4.3 rmind aes_gmac_zerokey(u_int8_t **sched)
818 1.12.4.3 rmind {
819 1.12.4.3 rmind
820 1.12.4.3 rmind free(*sched, M_CRYPTO_DATA);
821 1.12.4.3 rmind *sched = NULL;
822 1.12.4.3 rmind }
823 1.12.4.3 rmind
824 1.12.4.3 rmind void
825 1.12.4.3 rmind aes_gmac_reinit(void *key, const u_int8_t *iv, u_int8_t *ivout)
826 1.12.4.3 rmind {
827 1.12.4.3 rmind struct aes_gmac_ctx *ctx = key;
828 1.12.4.3 rmind
829 1.12.4.3 rmind if (!iv) {
830 1.12.4.3 rmind ctx->ivgenctx.lastiv++;
831 1.12.4.3 rmind iv = (const u_int8_t *)&ctx->ivgenctx.lastiv;
832 1.12.4.3 rmind }
833 1.12.4.3 rmind if (ivout)
834 1.12.4.3 rmind memcpy(ivout, iv, AESCTR_IVSIZE);
835 1.12.4.3 rmind }
836 1.12.4.3 rmind
837 1.1 thorpej /*
838 1.1 thorpej * And now for auth.
839 1.1 thorpej */
840 1.1 thorpej
841 1.1 thorpej static void
842 1.4 christos null_init(void *ctx)
843 1.1 thorpej {
844 1.1 thorpej }
845 1.1 thorpej
846 1.1 thorpej static int
847 1.4 christos null_update(void *ctx, const u_int8_t *buf,
848 1.4 christos u_int16_t len)
849 1.1 thorpej {
850 1.1 thorpej return 0;
851 1.1 thorpej }
852 1.1 thorpej
853 1.1 thorpej static void
854 1.4 christos null_final(u_int8_t *buf, void *ctx)
855 1.1 thorpej {
856 1.1 thorpej if (buf != (u_int8_t *) 0)
857 1.11 cegger memset(buf, 0, 12);
858 1.1 thorpej }
859 1.1 thorpej
860 1.1 thorpej static int
861 1.1 thorpej RMD160Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
862 1.1 thorpej {
863 1.1 thorpej RMD160Update(ctx, buf, len);
864 1.1 thorpej return 0;
865 1.1 thorpej }
866 1.1 thorpej
867 1.1 thorpej static int
868 1.1 thorpej MD5Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
869 1.1 thorpej {
870 1.1 thorpej MD5Update(ctx, buf, len);
871 1.1 thorpej return 0;
872 1.1 thorpej }
873 1.1 thorpej
874 1.1 thorpej static void
875 1.1 thorpej SHA1Init_int(void *ctx)
876 1.1 thorpej {
877 1.1 thorpej SHA1Init(ctx);
878 1.1 thorpej }
879 1.1 thorpej
880 1.1 thorpej static int
881 1.1 thorpej SHA1Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
882 1.1 thorpej {
883 1.1 thorpej SHA1Update(ctx, buf, len);
884 1.1 thorpej return 0;
885 1.1 thorpej }
886 1.1 thorpej
887 1.1 thorpej static void
888 1.1 thorpej SHA1Final_int(u_int8_t *blk, void *ctx)
889 1.1 thorpej {
890 1.1 thorpej SHA1Final(blk, ctx);
891 1.1 thorpej }
892 1.1 thorpej
893 1.1 thorpej static int
894 1.1 thorpej SHA256Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
895 1.1 thorpej {
896 1.1 thorpej SHA256_Update(ctx, buf, len);
897 1.1 thorpej return 0;
898 1.1 thorpej }
899 1.1 thorpej
900 1.1 thorpej static int
901 1.1 thorpej SHA384Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
902 1.1 thorpej {
903 1.1 thorpej SHA384_Update(ctx, buf, len);
904 1.1 thorpej return 0;
905 1.1 thorpej }
906 1.1 thorpej
907 1.1 thorpej static int
908 1.1 thorpej SHA512Update_int(void *ctx, const u_int8_t *buf, u_int16_t len)
909 1.1 thorpej {
910 1.1 thorpej SHA512_Update(ctx, buf, len);
911 1.1 thorpej return 0;
912 1.1 thorpej }
913 1.1 thorpej
914 1.1 thorpej /*
915 1.1 thorpej * And compression
916 1.1 thorpej */
917 1.1 thorpej
918 1.1 thorpej static u_int32_t
919 1.10 dsl deflate_compress(u_int8_t *data, u_int32_t size, u_int8_t **out)
920 1.1 thorpej {
921 1.12.4.1 rmind return deflate_global(data, size, 0, out, 0);
922 1.1 thorpej }
923 1.1 thorpej
924 1.1 thorpej static u_int32_t
925 1.12.4.1 rmind deflate_decompress(u_int8_t *data, u_int32_t size, u_int8_t **out,
926 1.12.4.1 rmind int size_hint)
927 1.1 thorpej {
928 1.12.4.1 rmind return deflate_global(data, size, 1, out, size_hint);
929 1.1 thorpej }
930 1.12 darran
931 1.12 darran static u_int32_t
932 1.12 darran gzip_compress(u_int8_t *data, u_int32_t size, u_int8_t **out)
933 1.12 darran {
934 1.12.4.1 rmind return gzip_global(data, size, 0, out, 0);
935 1.12 darran }
936 1.12 darran
937 1.12 darran static u_int32_t
938 1.12.4.1 rmind gzip_decompress(u_int8_t *data, u_int32_t size, u_int8_t **out,
939 1.12.4.1 rmind int size_hint)
940 1.12 darran {
941 1.12.4.1 rmind return gzip_global(data, size, 1, out, size_hint);
942 1.12 darran }
943