]>
Commit | Line | Data |
---|---|---|
2874c5fd | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
4a49b499 JL |
2 | /* |
3 | * CCM: Counter with CBC-MAC | |
4 | * | |
5 | * (C) Copyright IBM Corp. 2007 - Joy Latten <[email protected]> | |
4a49b499 JL |
6 | */ |
7 | ||
8 | #include <crypto/internal/aead.h> | |
0eb76ba2 | 9 | #include <crypto/internal/cipher.h> |
f15f05b0 | 10 | #include <crypto/internal/hash.h> |
4a49b499 JL |
11 | #include <crypto/internal/skcipher.h> |
12 | #include <crypto/scatterwalk.h> | |
13 | #include <linux/err.h> | |
14 | #include <linux/init.h> | |
15 | #include <linux/kernel.h> | |
16 | #include <linux/module.h> | |
17 | #include <linux/slab.h> | |
18 | ||
4a49b499 JL |
19 | struct ccm_instance_ctx { |
20 | struct crypto_skcipher_spawn ctr; | |
f15f05b0 | 21 | struct crypto_ahash_spawn mac; |
4a49b499 JL |
22 | }; |
23 | ||
24 | struct crypto_ccm_ctx { | |
f15f05b0 | 25 | struct crypto_ahash *mac; |
464b93a3 | 26 | struct crypto_skcipher *ctr; |
4a49b499 JL |
27 | }; |
28 | ||
29 | struct crypto_rfc4309_ctx { | |
30 | struct crypto_aead *child; | |
31 | u8 nonce[3]; | |
32 | }; | |
33 | ||
81c4c35e HX |
34 | struct crypto_rfc4309_req_ctx { |
35 | struct scatterlist src[3]; | |
36 | struct scatterlist dst[3]; | |
37 | struct aead_request subreq; | |
38 | }; | |
39 | ||
4a49b499 JL |
40 | struct crypto_ccm_req_priv_ctx { |
41 | u8 odata[16]; | |
3b30460c | 42 | u8 idata[16]; |
4a49b499 | 43 | u8 auth_tag[16]; |
4a49b499 | 44 | u32 flags; |
81c4c35e HX |
45 | struct scatterlist src[3]; |
46 | struct scatterlist dst[3]; | |
ebf533ad AB |
47 | union { |
48 | struct ahash_request ahreq; | |
49 | struct skcipher_request skreq; | |
50 | }; | |
4a49b499 JL |
51 | }; |
52 | ||
f15f05b0 AB |
53 | struct cbcmac_tfm_ctx { |
54 | struct crypto_cipher *child; | |
55 | }; | |
56 | ||
57 | struct cbcmac_desc_ctx { | |
58 | unsigned int len; | |
f15f05b0 AB |
59 | }; |
60 | ||
4a49b499 JL |
61 | static inline struct crypto_ccm_req_priv_ctx *crypto_ccm_reqctx( |
62 | struct aead_request *req) | |
63 | { | |
64 | unsigned long align = crypto_aead_alignmask(crypto_aead_reqtfm(req)); | |
65 | ||
66 | return (void *)PTR_ALIGN((u8 *)aead_request_ctx(req), align + 1); | |
67 | } | |
68 | ||
69 | static int set_msg_len(u8 *block, unsigned int msglen, int csize) | |
70 | { | |
71 | __be32 data; | |
72 | ||
73 | memset(block, 0, csize); | |
74 | block += csize; | |
75 | ||
76 | if (csize >= 4) | |
77 | csize = 4; | |
78 | else if (msglen > (1 << (8 * csize))) | |
79 | return -EOVERFLOW; | |
80 | ||
81 | data = cpu_to_be32(msglen); | |
82 | memcpy(block - csize, (u8 *)&data + 4 - csize, csize); | |
83 | ||
84 | return 0; | |
85 | } | |
86 | ||
87 | static int crypto_ccm_setkey(struct crypto_aead *aead, const u8 *key, | |
88 | unsigned int keylen) | |
89 | { | |
90 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(aead); | |
464b93a3 | 91 | struct crypto_skcipher *ctr = ctx->ctr; |
f15f05b0 | 92 | struct crypto_ahash *mac = ctx->mac; |
af5034e8 | 93 | int err; |
4a49b499 | 94 | |
464b93a3 HX |
95 | crypto_skcipher_clear_flags(ctr, CRYPTO_TFM_REQ_MASK); |
96 | crypto_skcipher_set_flags(ctr, crypto_aead_get_flags(aead) & | |
97 | CRYPTO_TFM_REQ_MASK); | |
98 | err = crypto_skcipher_setkey(ctr, key, keylen); | |
4a49b499 | 99 | if (err) |
af5034e8 | 100 | return err; |
4a49b499 | 101 | |
f15f05b0 AB |
102 | crypto_ahash_clear_flags(mac, CRYPTO_TFM_REQ_MASK); |
103 | crypto_ahash_set_flags(mac, crypto_aead_get_flags(aead) & | |
4a49b499 | 104 | CRYPTO_TFM_REQ_MASK); |
af5034e8 | 105 | return crypto_ahash_setkey(mac, key, keylen); |
4a49b499 JL |
106 | } |
107 | ||
108 | static int crypto_ccm_setauthsize(struct crypto_aead *tfm, | |
109 | unsigned int authsize) | |
110 | { | |
111 | switch (authsize) { | |
112 | case 4: | |
113 | case 6: | |
114 | case 8: | |
115 | case 10: | |
116 | case 12: | |
117 | case 14: | |
118 | case 16: | |
119 | break; | |
120 | default: | |
121 | return -EINVAL; | |
122 | } | |
123 | ||
124 | return 0; | |
125 | } | |
126 | ||
127 | static int format_input(u8 *info, struct aead_request *req, | |
128 | unsigned int cryptlen) | |
129 | { | |
130 | struct crypto_aead *aead = crypto_aead_reqtfm(req); | |
131 | unsigned int lp = req->iv[0]; | |
132 | unsigned int l = lp + 1; | |
133 | unsigned int m; | |
134 | ||
135 | m = crypto_aead_authsize(aead); | |
136 | ||
137 | memcpy(info, req->iv, 16); | |
138 | ||
139 | /* format control info per RFC 3610 and | |
140 | * NIST Special Publication 800-38C | |
141 | */ | |
142 | *info |= (8 * ((m - 2) / 2)); | |
143 | if (req->assoclen) | |
144 | *info |= 64; | |
145 | ||
146 | return set_msg_len(info + 16 - l, cryptlen, l); | |
147 | } | |
148 | ||
149 | static int format_adata(u8 *adata, unsigned int a) | |
150 | { | |
151 | int len = 0; | |
152 | ||
153 | /* add control info for associated data | |
154 | * RFC 3610 and NIST Special Publication 800-38C | |
155 | */ | |
156 | if (a < 65280) { | |
157 | *(__be16 *)adata = cpu_to_be16(a); | |
158 | len = 2; | |
159 | } else { | |
160 | *(__be16 *)adata = cpu_to_be16(0xfffe); | |
161 | *(__be32 *)&adata[2] = cpu_to_be32(a); | |
162 | len = 6; | |
163 | } | |
164 | ||
165 | return len; | |
166 | } | |
167 | ||
4a49b499 JL |
168 | static int crypto_ccm_auth(struct aead_request *req, struct scatterlist *plain, |
169 | unsigned int cryptlen) | |
170 | { | |
f15f05b0 | 171 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); |
4a49b499 JL |
172 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
173 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(aead); | |
ebf533ad | 174 | struct ahash_request *ahreq = &pctx->ahreq; |
4a49b499 | 175 | unsigned int assoclen = req->assoclen; |
f15f05b0 | 176 | struct scatterlist sg[3]; |
3b30460c AB |
177 | u8 *odata = pctx->odata; |
178 | u8 *idata = pctx->idata; | |
f15f05b0 | 179 | int ilen, err; |
4a49b499 JL |
180 | |
181 | /* format control data for input */ | |
182 | err = format_input(odata, req, cryptlen); | |
183 | if (err) | |
184 | goto out; | |
185 | ||
f15f05b0 AB |
186 | sg_init_table(sg, 3); |
187 | sg_set_buf(&sg[0], odata, 16); | |
4a49b499 JL |
188 | |
189 | /* format associated data and compute into mac */ | |
190 | if (assoclen) { | |
f15f05b0 AB |
191 | ilen = format_adata(idata, assoclen); |
192 | sg_set_buf(&sg[1], idata, ilen); | |
193 | sg_chain(sg, 3, req->src); | |
516280e7 | 194 | } else { |
f15f05b0 AB |
195 | ilen = 0; |
196 | sg_chain(sg, 2, req->src); | |
4a49b499 JL |
197 | } |
198 | ||
f15f05b0 AB |
199 | ahash_request_set_tfm(ahreq, ctx->mac); |
200 | ahash_request_set_callback(ahreq, pctx->flags, NULL, NULL); | |
201 | ahash_request_set_crypt(ahreq, sg, NULL, assoclen + ilen + 16); | |
202 | err = crypto_ahash_init(ahreq); | |
203 | if (err) | |
204 | goto out; | |
205 | err = crypto_ahash_update(ahreq); | |
206 | if (err) | |
207 | goto out; | |
4a49b499 | 208 | |
f15f05b0 AB |
209 | /* we need to pad the MAC input to a round multiple of the block size */ |
210 | ilen = 16 - (assoclen + ilen) % 16; | |
211 | if (ilen < 16) { | |
212 | memset(idata, 0, ilen); | |
213 | sg_init_table(sg, 2); | |
214 | sg_set_buf(&sg[0], idata, ilen); | |
215 | if (plain) | |
216 | sg_chain(sg, 2, plain); | |
217 | plain = sg; | |
218 | cryptlen += ilen; | |
219 | } | |
220 | ||
ad981647 | 221 | ahash_request_set_crypt(ahreq, plain, odata, cryptlen); |
f15f05b0 | 222 | err = crypto_ahash_finup(ahreq); |
4a49b499 JL |
223 | out: |
224 | return err; | |
225 | } | |
226 | ||
255e48eb | 227 | static void crypto_ccm_encrypt_done(void *data, int err) |
4a49b499 | 228 | { |
255e48eb | 229 | struct aead_request *req = data; |
4a49b499 JL |
230 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
231 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); | |
232 | u8 *odata = pctx->odata; | |
233 | ||
234 | if (!err) | |
81c4c35e HX |
235 | scatterwalk_map_and_copy(odata, req->dst, |
236 | req->assoclen + req->cryptlen, | |
4a49b499 JL |
237 | crypto_aead_authsize(aead), 1); |
238 | aead_request_complete(req, err); | |
239 | } | |
240 | ||
241 | static inline int crypto_ccm_check_iv(const u8 *iv) | |
242 | { | |
243 | /* 2 <= L <= 8, so 1 <= L' <= 7. */ | |
244 | if (1 > iv[0] || iv[0] > 7) | |
245 | return -EINVAL; | |
246 | ||
247 | return 0; | |
248 | } | |
249 | ||
81c4c35e HX |
250 | static int crypto_ccm_init_crypt(struct aead_request *req, u8 *tag) |
251 | { | |
252 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); | |
253 | struct scatterlist *sg; | |
254 | u8 *iv = req->iv; | |
255 | int err; | |
256 | ||
257 | err = crypto_ccm_check_iv(iv); | |
258 | if (err) | |
259 | return err; | |
260 | ||
261 | pctx->flags = aead_request_flags(req); | |
262 | ||
263 | /* Note: rfc 3610 and NIST 800-38C require counter of | |
264 | * zero to encrypt auth tag. | |
265 | */ | |
266 | memset(iv + 15 - iv[0], 0, iv[0] + 1); | |
267 | ||
268 | sg_init_table(pctx->src, 3); | |
269 | sg_set_buf(pctx->src, tag, 16); | |
270 | sg = scatterwalk_ffwd(pctx->src + 1, req->src, req->assoclen); | |
271 | if (sg != pctx->src + 1) | |
272 | sg_chain(pctx->src, 2, sg); | |
273 | ||
274 | if (req->src != req->dst) { | |
275 | sg_init_table(pctx->dst, 3); | |
276 | sg_set_buf(pctx->dst, tag, 16); | |
277 | sg = scatterwalk_ffwd(pctx->dst + 1, req->dst, req->assoclen); | |
278 | if (sg != pctx->dst + 1) | |
279 | sg_chain(pctx->dst, 2, sg); | |
280 | } | |
281 | ||
282 | return 0; | |
283 | } | |
284 | ||
4a49b499 JL |
285 | static int crypto_ccm_encrypt(struct aead_request *req) |
286 | { | |
287 | struct crypto_aead *aead = crypto_aead_reqtfm(req); | |
288 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(aead); | |
289 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); | |
464b93a3 | 290 | struct skcipher_request *skreq = &pctx->skreq; |
4a49b499 JL |
291 | struct scatterlist *dst; |
292 | unsigned int cryptlen = req->cryptlen; | |
293 | u8 *odata = pctx->odata; | |
294 | u8 *iv = req->iv; | |
295 | int err; | |
296 | ||
81c4c35e | 297 | err = crypto_ccm_init_crypt(req, odata); |
4a49b499 JL |
298 | if (err) |
299 | return err; | |
300 | ||
81c4c35e | 301 | err = crypto_ccm_auth(req, sg_next(pctx->src), cryptlen); |
4a49b499 JL |
302 | if (err) |
303 | return err; | |
304 | ||
4a49b499 | 305 | dst = pctx->src; |
81c4c35e | 306 | if (req->src != req->dst) |
4a49b499 | 307 | dst = pctx->dst; |
4a49b499 | 308 | |
464b93a3 HX |
309 | skcipher_request_set_tfm(skreq, ctx->ctr); |
310 | skcipher_request_set_callback(skreq, pctx->flags, | |
311 | crypto_ccm_encrypt_done, req); | |
312 | skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv); | |
313 | err = crypto_skcipher_encrypt(skreq); | |
4a49b499 JL |
314 | if (err) |
315 | return err; | |
316 | ||
317 | /* copy authtag to end of dst */ | |
81c4c35e | 318 | scatterwalk_map_and_copy(odata, sg_next(dst), cryptlen, |
4a49b499 JL |
319 | crypto_aead_authsize(aead), 1); |
320 | return err; | |
321 | } | |
322 | ||
255e48eb | 323 | static void crypto_ccm_decrypt_done(void *data, int err) |
4a49b499 | 324 | { |
255e48eb | 325 | struct aead_request *req = data; |
4a49b499 JL |
326 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); |
327 | struct crypto_aead *aead = crypto_aead_reqtfm(req); | |
328 | unsigned int authsize = crypto_aead_authsize(aead); | |
329 | unsigned int cryptlen = req->cryptlen - authsize; | |
81c4c35e HX |
330 | struct scatterlist *dst; |
331 | ||
332 | pctx->flags = 0; | |
333 | ||
334 | dst = sg_next(req->src == req->dst ? pctx->src : pctx->dst); | |
4a49b499 JL |
335 | |
336 | if (!err) { | |
81c4c35e | 337 | err = crypto_ccm_auth(req, dst, cryptlen); |
6bf37e5a | 338 | if (!err && crypto_memneq(pctx->auth_tag, pctx->odata, authsize)) |
4a49b499 JL |
339 | err = -EBADMSG; |
340 | } | |
341 | aead_request_complete(req, err); | |
342 | } | |
343 | ||
344 | static int crypto_ccm_decrypt(struct aead_request *req) | |
345 | { | |
346 | struct crypto_aead *aead = crypto_aead_reqtfm(req); | |
347 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(aead); | |
348 | struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); | |
464b93a3 | 349 | struct skcipher_request *skreq = &pctx->skreq; |
4a49b499 JL |
350 | struct scatterlist *dst; |
351 | unsigned int authsize = crypto_aead_authsize(aead); | |
352 | unsigned int cryptlen = req->cryptlen; | |
353 | u8 *authtag = pctx->auth_tag; | |
354 | u8 *odata = pctx->odata; | |
441f99c9 | 355 | u8 *iv = pctx->idata; |
4a49b499 JL |
356 | int err; |
357 | ||
4a49b499 JL |
358 | cryptlen -= authsize; |
359 | ||
81c4c35e | 360 | err = crypto_ccm_init_crypt(req, authtag); |
4a49b499 JL |
361 | if (err) |
362 | return err; | |
363 | ||
81c4c35e HX |
364 | scatterwalk_map_and_copy(authtag, sg_next(pctx->src), cryptlen, |
365 | authsize, 0); | |
4a49b499 JL |
366 | |
367 | dst = pctx->src; | |
81c4c35e | 368 | if (req->src != req->dst) |
4a49b499 | 369 | dst = pctx->dst; |
4a49b499 | 370 | |
441f99c9 RI |
371 | memcpy(iv, req->iv, 16); |
372 | ||
464b93a3 HX |
373 | skcipher_request_set_tfm(skreq, ctx->ctr); |
374 | skcipher_request_set_callback(skreq, pctx->flags, | |
375 | crypto_ccm_decrypt_done, req); | |
376 | skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv); | |
377 | err = crypto_skcipher_decrypt(skreq); | |
4a49b499 JL |
378 | if (err) |
379 | return err; | |
380 | ||
81c4c35e | 381 | err = crypto_ccm_auth(req, sg_next(dst), cryptlen); |
4a49b499 JL |
382 | if (err) |
383 | return err; | |
384 | ||
385 | /* verify */ | |
6bf37e5a | 386 | if (crypto_memneq(authtag, odata, authsize)) |
4a49b499 JL |
387 | return -EBADMSG; |
388 | ||
389 | return err; | |
390 | } | |
391 | ||
81c4c35e | 392 | static int crypto_ccm_init_tfm(struct crypto_aead *tfm) |
4a49b499 | 393 | { |
81c4c35e HX |
394 | struct aead_instance *inst = aead_alg_instance(tfm); |
395 | struct ccm_instance_ctx *ictx = aead_instance_ctx(inst); | |
396 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(tfm); | |
f15f05b0 | 397 | struct crypto_ahash *mac; |
464b93a3 | 398 | struct crypto_skcipher *ctr; |
4a49b499 JL |
399 | unsigned long align; |
400 | int err; | |
401 | ||
f15f05b0 AB |
402 | mac = crypto_spawn_ahash(&ictx->mac); |
403 | if (IS_ERR(mac)) | |
404 | return PTR_ERR(mac); | |
4a49b499 | 405 | |
60425a8b | 406 | ctr = crypto_spawn_skcipher(&ictx->ctr); |
4a49b499 JL |
407 | err = PTR_ERR(ctr); |
408 | if (IS_ERR(ctr)) | |
f15f05b0 | 409 | goto err_free_mac; |
4a49b499 | 410 | |
f15f05b0 | 411 | ctx->mac = mac; |
4a49b499 JL |
412 | ctx->ctr = ctr; |
413 | ||
81c4c35e | 414 | align = crypto_aead_alignmask(tfm); |
4a49b499 | 415 | align &= ~(crypto_tfm_ctx_alignment() - 1); |
81c4c35e HX |
416 | crypto_aead_set_reqsize( |
417 | tfm, | |
2c221ad3 | 418 | align + sizeof(struct crypto_ccm_req_priv_ctx) + |
ebf533ad | 419 | max(crypto_ahash_reqsize(mac), crypto_skcipher_reqsize(ctr))); |
4a49b499 JL |
420 | |
421 | return 0; | |
422 | ||
f15f05b0 AB |
423 | err_free_mac: |
424 | crypto_free_ahash(mac); | |
4a49b499 JL |
425 | return err; |
426 | } | |
427 | ||
81c4c35e | 428 | static void crypto_ccm_exit_tfm(struct crypto_aead *tfm) |
4a49b499 | 429 | { |
81c4c35e | 430 | struct crypto_ccm_ctx *ctx = crypto_aead_ctx(tfm); |
4a49b499 | 431 | |
f15f05b0 | 432 | crypto_free_ahash(ctx->mac); |
464b93a3 | 433 | crypto_free_skcipher(ctx->ctr); |
4a49b499 JL |
434 | } |
435 | ||
81c4c35e HX |
436 | static void crypto_ccm_free(struct aead_instance *inst) |
437 | { | |
438 | struct ccm_instance_ctx *ctx = aead_instance_ctx(inst); | |
439 | ||
f15f05b0 | 440 | crypto_drop_ahash(&ctx->mac); |
81c4c35e HX |
441 | crypto_drop_skcipher(&ctx->ctr); |
442 | kfree(inst); | |
443 | } | |
444 | ||
445 | static int crypto_ccm_create_common(struct crypto_template *tmpl, | |
446 | struct rtattr **tb, | |
81c4c35e | 447 | const char *ctr_name, |
f15f05b0 | 448 | const char *mac_name) |
4a49b499 | 449 | { |
b9f76ddd | 450 | u32 mask; |
81c4c35e | 451 | struct aead_instance *inst; |
05b3bbb5 | 452 | struct ccm_instance_ctx *ictx; |
464b93a3 | 453 | struct skcipher_alg *ctr; |
f15f05b0 | 454 | struct hash_alg_common *mac; |
4a49b499 JL |
455 | int err; |
456 | ||
7bcb2c99 EB |
457 | err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_AEAD, &mask); |
458 | if (err) | |
459 | return err; | |
b9f76ddd | 460 | |
4a49b499 | 461 | inst = kzalloc(sizeof(*inst) + sizeof(*ictx), GFP_KERNEL); |
4a49b499 | 462 | if (!inst) |
05b3bbb5 | 463 | return -ENOMEM; |
81c4c35e | 464 | ictx = aead_instance_ctx(inst); |
05b3bbb5 EB |
465 | |
466 | err = crypto_grab_ahash(&ictx->mac, aead_crypto_instance(inst), | |
7bcb2c99 | 467 | mac_name, 0, mask | CRYPTO_ALG_ASYNC); |
4a49b499 JL |
468 | if (err) |
469 | goto err_free_inst; | |
05b3bbb5 EB |
470 | mac = crypto_spawn_ahash_alg(&ictx->mac); |
471 | ||
472 | err = -EINVAL; | |
473 | if (strncmp(mac->base.cra_name, "cbcmac(", 7) != 0 || | |
474 | mac->digestsize != 16) | |
475 | goto err_free_inst; | |
4a49b499 | 476 | |
b9f76ddd EB |
477 | err = crypto_grab_skcipher(&ictx->ctr, aead_crypto_instance(inst), |
478 | ctr_name, 0, mask); | |
4a49b499 | 479 | if (err) |
05b3bbb5 | 480 | goto err_free_inst; |
464b93a3 | 481 | ctr = crypto_spawn_skcipher_alg(&ictx->ctr); |
4a49b499 | 482 | |
6a1faa4a | 483 | /* The skcipher algorithm must be CTR mode, using 16-byte blocks. */ |
4a49b499 | 484 | err = -EINVAL; |
6a1faa4a EB |
485 | if (strncmp(ctr->base.cra_name, "ctr(", 4) != 0 || |
486 | crypto_skcipher_alg_ivsize(ctr) != 16 || | |
487 | ctr->base.cra_blocksize != 1) | |
05b3bbb5 | 488 | goto err_free_inst; |
4a49b499 | 489 | |
6a1faa4a EB |
490 | /* ctr and cbcmac must use the same underlying block cipher. */ |
491 | if (strcmp(ctr->base.cra_name + 4, mac->base.cra_name + 7) != 0) | |
05b3bbb5 | 492 | goto err_free_inst; |
4a49b499 JL |
493 | |
494 | err = -ENAMETOOLONG; | |
6a1faa4a EB |
495 | if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, |
496 | "ccm(%s", ctr->base.cra_name + 4) >= CRYPTO_MAX_ALG_NAME) | |
05b3bbb5 | 497 | goto err_free_inst; |
6a1faa4a | 498 | |
81c4c35e | 499 | if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, |
464b93a3 | 500 | "ccm_base(%s,%s)", ctr->base.cra_driver_name, |
f15f05b0 | 501 | mac->base.cra_driver_name) >= CRYPTO_MAX_ALG_NAME) |
05b3bbb5 | 502 | goto err_free_inst; |
4a49b499 | 503 | |
f15f05b0 | 504 | inst->alg.base.cra_priority = (mac->base.cra_priority + |
464b93a3 | 505 | ctr->base.cra_priority) / 2; |
81c4c35e | 506 | inst->alg.base.cra_blocksize = 1; |
f15f05b0 | 507 | inst->alg.base.cra_alignmask = mac->base.cra_alignmask | |
5ba8e2a0 | 508 | ctr->base.cra_alignmask; |
81c4c35e | 509 | inst->alg.ivsize = 16; |
464b93a3 | 510 | inst->alg.chunksize = crypto_skcipher_alg_chunksize(ctr); |
81c4c35e HX |
511 | inst->alg.maxauthsize = 16; |
512 | inst->alg.base.cra_ctxsize = sizeof(struct crypto_ccm_ctx); | |
513 | inst->alg.init = crypto_ccm_init_tfm; | |
514 | inst->alg.exit = crypto_ccm_exit_tfm; | |
515 | inst->alg.setkey = crypto_ccm_setkey; | |
516 | inst->alg.setauthsize = crypto_ccm_setauthsize; | |
517 | inst->alg.encrypt = crypto_ccm_encrypt; | |
518 | inst->alg.decrypt = crypto_ccm_decrypt; | |
519 | ||
520 | inst->free = crypto_ccm_free; | |
521 | ||
522 | err = aead_register_instance(tmpl, inst); | |
05b3bbb5 | 523 | if (err) { |
4a49b499 | 524 | err_free_inst: |
05b3bbb5 EB |
525 | crypto_ccm_free(inst); |
526 | } | |
527 | return err; | |
4a49b499 JL |
528 | } |
529 | ||
81c4c35e | 530 | static int crypto_ccm_create(struct crypto_template *tmpl, struct rtattr **tb) |
4a49b499 | 531 | { |
4a49b499 JL |
532 | const char *cipher_name; |
533 | char ctr_name[CRYPTO_MAX_ALG_NAME]; | |
f15f05b0 | 534 | char mac_name[CRYPTO_MAX_ALG_NAME]; |
4a49b499 JL |
535 | |
536 | cipher_name = crypto_attr_alg_name(tb[1]); | |
4a49b499 | 537 | if (IS_ERR(cipher_name)) |
81c4c35e | 538 | return PTR_ERR(cipher_name); |
4a49b499 JL |
539 | |
540 | if (snprintf(ctr_name, CRYPTO_MAX_ALG_NAME, "ctr(%s)", | |
541 | cipher_name) >= CRYPTO_MAX_ALG_NAME) | |
81c4c35e | 542 | return -ENAMETOOLONG; |
4a49b499 | 543 | |
f15f05b0 AB |
544 | if (snprintf(mac_name, CRYPTO_MAX_ALG_NAME, "cbcmac(%s)", |
545 | cipher_name) >= CRYPTO_MAX_ALG_NAME) | |
546 | return -ENAMETOOLONG; | |
547 | ||
6a1faa4a | 548 | return crypto_ccm_create_common(tmpl, tb, ctr_name, mac_name); |
4a49b499 JL |
549 | } |
550 | ||
81c4c35e HX |
551 | static int crypto_ccm_base_create(struct crypto_template *tmpl, |
552 | struct rtattr **tb) | |
4a49b499 | 553 | { |
4a49b499 | 554 | const char *ctr_name; |
6a1faa4a | 555 | const char *mac_name; |
4a49b499 JL |
556 | |
557 | ctr_name = crypto_attr_alg_name(tb[1]); | |
4a49b499 | 558 | if (IS_ERR(ctr_name)) |
81c4c35e | 559 | return PTR_ERR(ctr_name); |
4a49b499 | 560 | |
6a1faa4a EB |
561 | mac_name = crypto_attr_alg_name(tb[2]); |
562 | if (IS_ERR(mac_name)) | |
563 | return PTR_ERR(mac_name); | |
4a49b499 | 564 | |
6a1faa4a | 565 | return crypto_ccm_create_common(tmpl, tb, ctr_name, mac_name); |
4a49b499 JL |
566 | } |
567 | ||
4a49b499 JL |
568 | static int crypto_rfc4309_setkey(struct crypto_aead *parent, const u8 *key, |
569 | unsigned int keylen) | |
570 | { | |
571 | struct crypto_rfc4309_ctx *ctx = crypto_aead_ctx(parent); | |
572 | struct crypto_aead *child = ctx->child; | |
4a49b499 JL |
573 | |
574 | if (keylen < 3) | |
575 | return -EINVAL; | |
576 | ||
577 | keylen -= 3; | |
578 | memcpy(ctx->nonce, key + keylen, 3); | |
579 | ||
580 | crypto_aead_clear_flags(child, CRYPTO_TFM_REQ_MASK); | |
581 | crypto_aead_set_flags(child, crypto_aead_get_flags(parent) & | |
582 | CRYPTO_TFM_REQ_MASK); | |
af5034e8 | 583 | return crypto_aead_setkey(child, key, keylen); |
4a49b499 JL |
584 | } |
585 | ||
586 | static int crypto_rfc4309_setauthsize(struct crypto_aead *parent, | |
587 | unsigned int authsize) | |
588 | { | |
589 | struct crypto_rfc4309_ctx *ctx = crypto_aead_ctx(parent); | |
590 | ||
591 | switch (authsize) { | |
592 | case 8: | |
593 | case 12: | |
594 | case 16: | |
595 | break; | |
596 | default: | |
597 | return -EINVAL; | |
598 | } | |
599 | ||
600 | return crypto_aead_setauthsize(ctx->child, authsize); | |
601 | } | |
602 | ||
603 | static struct aead_request *crypto_rfc4309_crypt(struct aead_request *req) | |
604 | { | |
81c4c35e HX |
605 | struct crypto_rfc4309_req_ctx *rctx = aead_request_ctx(req); |
606 | struct aead_request *subreq = &rctx->subreq; | |
4a49b499 JL |
607 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
608 | struct crypto_rfc4309_ctx *ctx = crypto_aead_ctx(aead); | |
609 | struct crypto_aead *child = ctx->child; | |
81c4c35e | 610 | struct scatterlist *sg; |
4a49b499 JL |
611 | u8 *iv = PTR_ALIGN((u8 *)(subreq + 1) + crypto_aead_reqsize(child), |
612 | crypto_aead_alignmask(child) + 1); | |
613 | ||
614 | /* L' */ | |
615 | iv[0] = 3; | |
616 | ||
617 | memcpy(iv + 1, ctx->nonce, 3); | |
618 | memcpy(iv + 4, req->iv, 8); | |
619 | ||
81c4c35e HX |
620 | scatterwalk_map_and_copy(iv + 16, req->src, 0, req->assoclen - 8, 0); |
621 | ||
622 | sg_init_table(rctx->src, 3); | |
623 | sg_set_buf(rctx->src, iv + 16, req->assoclen - 8); | |
624 | sg = scatterwalk_ffwd(rctx->src + 1, req->src, req->assoclen); | |
625 | if (sg != rctx->src + 1) | |
626 | sg_chain(rctx->src, 2, sg); | |
627 | ||
628 | if (req->src != req->dst) { | |
629 | sg_init_table(rctx->dst, 3); | |
630 | sg_set_buf(rctx->dst, iv + 16, req->assoclen - 8); | |
631 | sg = scatterwalk_ffwd(rctx->dst + 1, req->dst, req->assoclen); | |
632 | if (sg != rctx->dst + 1) | |
633 | sg_chain(rctx->dst, 2, sg); | |
634 | } | |
635 | ||
4a49b499 JL |
636 | aead_request_set_tfm(subreq, child); |
637 | aead_request_set_callback(subreq, req->base.flags, req->base.complete, | |
638 | req->base.data); | |
81c4c35e HX |
639 | aead_request_set_crypt(subreq, rctx->src, |
640 | req->src == req->dst ? rctx->src : rctx->dst, | |
641 | req->cryptlen, iv); | |
642 | aead_request_set_ad(subreq, req->assoclen - 8); | |
4a49b499 JL |
643 | |
644 | return subreq; | |
645 | } | |
646 | ||
647 | static int crypto_rfc4309_encrypt(struct aead_request *req) | |
648 | { | |
81c4c35e HX |
649 | if (req->assoclen != 16 && req->assoclen != 20) |
650 | return -EINVAL; | |
651 | ||
4a49b499 JL |
652 | req = crypto_rfc4309_crypt(req); |
653 | ||
654 | return crypto_aead_encrypt(req); | |
655 | } | |
656 | ||
657 | static int crypto_rfc4309_decrypt(struct aead_request *req) | |
658 | { | |
81c4c35e HX |
659 | if (req->assoclen != 16 && req->assoclen != 20) |
660 | return -EINVAL; | |
661 | ||
4a49b499 JL |
662 | req = crypto_rfc4309_crypt(req); |
663 | ||
664 | return crypto_aead_decrypt(req); | |
665 | } | |
666 | ||
81c4c35e | 667 | static int crypto_rfc4309_init_tfm(struct crypto_aead *tfm) |
4a49b499 | 668 | { |
81c4c35e HX |
669 | struct aead_instance *inst = aead_alg_instance(tfm); |
670 | struct crypto_aead_spawn *spawn = aead_instance_ctx(inst); | |
671 | struct crypto_rfc4309_ctx *ctx = crypto_aead_ctx(tfm); | |
4a49b499 JL |
672 | struct crypto_aead *aead; |
673 | unsigned long align; | |
674 | ||
675 | aead = crypto_spawn_aead(spawn); | |
676 | if (IS_ERR(aead)) | |
677 | return PTR_ERR(aead); | |
678 | ||
679 | ctx->child = aead; | |
680 | ||
681 | align = crypto_aead_alignmask(aead); | |
682 | align &= ~(crypto_tfm_ctx_alignment() - 1); | |
81c4c35e HX |
683 | crypto_aead_set_reqsize( |
684 | tfm, | |
685 | sizeof(struct crypto_rfc4309_req_ctx) + | |
2c221ad3 | 686 | ALIGN(crypto_aead_reqsize(aead), crypto_tfm_ctx_alignment()) + |
81c4c35e | 687 | align + 32); |
4a49b499 JL |
688 | |
689 | return 0; | |
690 | } | |
691 | ||
81c4c35e | 692 | static void crypto_rfc4309_exit_tfm(struct crypto_aead *tfm) |
4a49b499 | 693 | { |
81c4c35e | 694 | struct crypto_rfc4309_ctx *ctx = crypto_aead_ctx(tfm); |
4a49b499 JL |
695 | |
696 | crypto_free_aead(ctx->child); | |
697 | } | |
698 | ||
81c4c35e HX |
699 | static void crypto_rfc4309_free(struct aead_instance *inst) |
700 | { | |
701 | crypto_drop_aead(aead_instance_ctx(inst)); | |
702 | kfree(inst); | |
703 | } | |
704 | ||
705 | static int crypto_rfc4309_create(struct crypto_template *tmpl, | |
706 | struct rtattr **tb) | |
4a49b499 | 707 | { |
cd900f0c | 708 | u32 mask; |
81c4c35e | 709 | struct aead_instance *inst; |
4a49b499 | 710 | struct crypto_aead_spawn *spawn; |
81c4c35e | 711 | struct aead_alg *alg; |
4a49b499 JL |
712 | int err; |
713 | ||
7bcb2c99 EB |
714 | err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_AEAD, &mask); |
715 | if (err) | |
716 | return err; | |
cd900f0c | 717 | |
4a49b499 JL |
718 | inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL); |
719 | if (!inst) | |
81c4c35e | 720 | return -ENOMEM; |
4a49b499 | 721 | |
81c4c35e | 722 | spawn = aead_instance_ctx(inst); |
cd900f0c | 723 | err = crypto_grab_aead(spawn, aead_crypto_instance(inst), |
64d66793 | 724 | crypto_attr_alg_name(tb[1]), 0, mask); |
4a49b499 | 725 | if (err) |
64d66793 | 726 | goto err_free_inst; |
4a49b499 | 727 | |
81c4c35e | 728 | alg = crypto_spawn_aead_alg(spawn); |
4a49b499 JL |
729 | |
730 | err = -EINVAL; | |
731 | ||
732 | /* We only support 16-byte blocks. */ | |
81c4c35e | 733 | if (crypto_aead_alg_ivsize(alg) != 16) |
64d66793 | 734 | goto err_free_inst; |
4a49b499 JL |
735 | |
736 | /* Not a stream cipher? */ | |
81c4c35e | 737 | if (alg->base.cra_blocksize != 1) |
64d66793 | 738 | goto err_free_inst; |
4a49b499 JL |
739 | |
740 | err = -ENAMETOOLONG; | |
81c4c35e HX |
741 | if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, |
742 | "rfc4309(%s)", alg->base.cra_name) >= | |
743 | CRYPTO_MAX_ALG_NAME || | |
744 | snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, | |
745 | "rfc4309(%s)", alg->base.cra_driver_name) >= | |
4a49b499 | 746 | CRYPTO_MAX_ALG_NAME) |
64d66793 | 747 | goto err_free_inst; |
4a49b499 | 748 | |
81c4c35e HX |
749 | inst->alg.base.cra_priority = alg->base.cra_priority; |
750 | inst->alg.base.cra_blocksize = 1; | |
751 | inst->alg.base.cra_alignmask = alg->base.cra_alignmask; | |
4a49b499 | 752 | |
81c4c35e | 753 | inst->alg.ivsize = 8; |
464b93a3 | 754 | inst->alg.chunksize = crypto_aead_alg_chunksize(alg); |
81c4c35e | 755 | inst->alg.maxauthsize = 16; |
4a49b499 | 756 | |
81c4c35e | 757 | inst->alg.base.cra_ctxsize = sizeof(struct crypto_rfc4309_ctx); |
4a49b499 | 758 | |
81c4c35e HX |
759 | inst->alg.init = crypto_rfc4309_init_tfm; |
760 | inst->alg.exit = crypto_rfc4309_exit_tfm; | |
4a49b499 | 761 | |
81c4c35e HX |
762 | inst->alg.setkey = crypto_rfc4309_setkey; |
763 | inst->alg.setauthsize = crypto_rfc4309_setauthsize; | |
764 | inst->alg.encrypt = crypto_rfc4309_encrypt; | |
765 | inst->alg.decrypt = crypto_rfc4309_decrypt; | |
4a49b499 | 766 | |
81c4c35e HX |
767 | inst->free = crypto_rfc4309_free; |
768 | ||
769 | err = aead_register_instance(tmpl, inst); | |
64d66793 EB |
770 | if (err) { |
771 | err_free_inst: | |
772 | crypto_rfc4309_free(inst); | |
773 | } | |
81c4c35e | 774 | return err; |
4a49b499 JL |
775 | } |
776 | ||
f15f05b0 AB |
777 | static int crypto_cbcmac_digest_setkey(struct crypto_shash *parent, |
778 | const u8 *inkey, unsigned int keylen) | |
779 | { | |
780 | struct cbcmac_tfm_ctx *ctx = crypto_shash_ctx(parent); | |
781 | ||
782 | return crypto_cipher_setkey(ctx->child, inkey, keylen); | |
783 | } | |
784 | ||
785 | static int crypto_cbcmac_digest_init(struct shash_desc *pdesc) | |
786 | { | |
787 | struct cbcmac_desc_ctx *ctx = shash_desc_ctx(pdesc); | |
788 | int bs = crypto_shash_digestsize(pdesc->tfm); | |
5338ad70 | 789 | u8 *dg = (u8 *)ctx + crypto_shash_descsize(pdesc->tfm) - bs; |
f15f05b0 AB |
790 | |
791 | ctx->len = 0; | |
5338ad70 | 792 | memset(dg, 0, bs); |
f15f05b0 AB |
793 | |
794 | return 0; | |
795 | } | |
796 | ||
797 | static int crypto_cbcmac_digest_update(struct shash_desc *pdesc, const u8 *p, | |
798 | unsigned int len) | |
799 | { | |
800 | struct crypto_shash *parent = pdesc->tfm; | |
801 | struct cbcmac_tfm_ctx *tctx = crypto_shash_ctx(parent); | |
802 | struct cbcmac_desc_ctx *ctx = shash_desc_ctx(pdesc); | |
803 | struct crypto_cipher *tfm = tctx->child; | |
804 | int bs = crypto_shash_digestsize(parent); | |
5338ad70 | 805 | u8 *dg = (u8 *)ctx + crypto_shash_descsize(parent) - bs; |
f15f05b0 AB |
806 | |
807 | while (len > 0) { | |
808 | unsigned int l = min(len, bs - ctx->len); | |
809 | ||
5338ad70 | 810 | crypto_xor(dg + ctx->len, p, l); |
f15f05b0 AB |
811 | ctx->len +=l; |
812 | len -= l; | |
813 | p += l; | |
814 | ||
815 | if (ctx->len == bs) { | |
5338ad70 | 816 | crypto_cipher_encrypt_one(tfm, dg, dg); |
f15f05b0 AB |
817 | ctx->len = 0; |
818 | } | |
819 | } | |
820 | ||
821 | return 0; | |
822 | } | |
823 | ||
824 | static int crypto_cbcmac_digest_final(struct shash_desc *pdesc, u8 *out) | |
825 | { | |
826 | struct crypto_shash *parent = pdesc->tfm; | |
827 | struct cbcmac_tfm_ctx *tctx = crypto_shash_ctx(parent); | |
828 | struct cbcmac_desc_ctx *ctx = shash_desc_ctx(pdesc); | |
829 | struct crypto_cipher *tfm = tctx->child; | |
830 | int bs = crypto_shash_digestsize(parent); | |
5338ad70 | 831 | u8 *dg = (u8 *)ctx + crypto_shash_descsize(parent) - bs; |
f15f05b0 AB |
832 | |
833 | if (ctx->len) | |
5338ad70 | 834 | crypto_cipher_encrypt_one(tfm, dg, dg); |
f15f05b0 | 835 | |
5338ad70 | 836 | memcpy(out, dg, bs); |
f15f05b0 AB |
837 | return 0; |
838 | } | |
839 | ||
840 | static int cbcmac_init_tfm(struct crypto_tfm *tfm) | |
841 | { | |
842 | struct crypto_cipher *cipher; | |
843 | struct crypto_instance *inst = (void *)tfm->__crt_alg; | |
d5ed3b65 | 844 | struct crypto_cipher_spawn *spawn = crypto_instance_ctx(inst); |
f15f05b0 AB |
845 | struct cbcmac_tfm_ctx *ctx = crypto_tfm_ctx(tfm); |
846 | ||
847 | cipher = crypto_spawn_cipher(spawn); | |
848 | if (IS_ERR(cipher)) | |
849 | return PTR_ERR(cipher); | |
850 | ||
851 | ctx->child = cipher; | |
852 | ||
853 | return 0; | |
854 | }; | |
855 | ||
856 | static void cbcmac_exit_tfm(struct crypto_tfm *tfm) | |
857 | { | |
858 | struct cbcmac_tfm_ctx *ctx = crypto_tfm_ctx(tfm); | |
859 | crypto_free_cipher(ctx->child); | |
860 | } | |
861 | ||
862 | static int cbcmac_create(struct crypto_template *tmpl, struct rtattr **tb) | |
863 | { | |
864 | struct shash_instance *inst; | |
16672970 | 865 | struct crypto_cipher_spawn *spawn; |
f15f05b0 | 866 | struct crypto_alg *alg; |
7bcb2c99 | 867 | u32 mask; |
f15f05b0 AB |
868 | int err; |
869 | ||
7bcb2c99 | 870 | err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_SHASH, &mask); |
f15f05b0 AB |
871 | if (err) |
872 | return err; | |
873 | ||
16672970 EB |
874 | inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL); |
875 | if (!inst) | |
876 | return -ENOMEM; | |
877 | spawn = shash_instance_ctx(inst); | |
f15f05b0 | 878 | |
16672970 | 879 | err = crypto_grab_cipher(spawn, shash_crypto_instance(inst), |
7bcb2c99 | 880 | crypto_attr_alg_name(tb[1]), 0, mask); |
16672970 EB |
881 | if (err) |
882 | goto err_free_inst; | |
883 | alg = crypto_spawn_cipher_alg(spawn); | |
f15f05b0 | 884 | |
16672970 | 885 | err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); |
f15f05b0 | 886 | if (err) |
16672970 | 887 | goto err_free_inst; |
f15f05b0 AB |
888 | |
889 | inst->alg.base.cra_priority = alg->cra_priority; | |
890 | inst->alg.base.cra_blocksize = 1; | |
891 | ||
892 | inst->alg.digestsize = alg->cra_blocksize; | |
5338ad70 AB |
893 | inst->alg.descsize = ALIGN(sizeof(struct cbcmac_desc_ctx), |
894 | alg->cra_alignmask + 1) + | |
f15f05b0 AB |
895 | alg->cra_blocksize; |
896 | ||
897 | inst->alg.base.cra_ctxsize = sizeof(struct cbcmac_tfm_ctx); | |
898 | inst->alg.base.cra_init = cbcmac_init_tfm; | |
899 | inst->alg.base.cra_exit = cbcmac_exit_tfm; | |
900 | ||
901 | inst->alg.init = crypto_cbcmac_digest_init; | |
902 | inst->alg.update = crypto_cbcmac_digest_update; | |
903 | inst->alg.final = crypto_cbcmac_digest_final; | |
904 | inst->alg.setkey = crypto_cbcmac_digest_setkey; | |
905 | ||
a39c66cc EB |
906 | inst->free = shash_free_singlespawn_instance; |
907 | ||
f15f05b0 | 908 | err = shash_register_instance(tmpl, inst); |
16672970 EB |
909 | if (err) { |
910 | err_free_inst: | |
a39c66cc | 911 | shash_free_singlespawn_instance(inst); |
16672970 | 912 | } |
f15f05b0 AB |
913 | return err; |
914 | } | |
915 | ||
0db19035 XW |
916 | static struct crypto_template crypto_ccm_tmpls[] = { |
917 | { | |
918 | .name = "cbcmac", | |
919 | .create = cbcmac_create, | |
0db19035 XW |
920 | .module = THIS_MODULE, |
921 | }, { | |
922 | .name = "ccm_base", | |
923 | .create = crypto_ccm_base_create, | |
924 | .module = THIS_MODULE, | |
925 | }, { | |
926 | .name = "ccm", | |
927 | .create = crypto_ccm_create, | |
928 | .module = THIS_MODULE, | |
929 | }, { | |
930 | .name = "rfc4309", | |
931 | .create = crypto_rfc4309_create, | |
932 | .module = THIS_MODULE, | |
933 | }, | |
f15f05b0 AB |
934 | }; |
935 | ||
4a49b499 JL |
936 | static int __init crypto_ccm_module_init(void) |
937 | { | |
0db19035 XW |
938 | return crypto_register_templates(crypto_ccm_tmpls, |
939 | ARRAY_SIZE(crypto_ccm_tmpls)); | |
4a49b499 JL |
940 | } |
941 | ||
942 | static void __exit crypto_ccm_module_exit(void) | |
943 | { | |
0db19035 XW |
944 | crypto_unregister_templates(crypto_ccm_tmpls, |
945 | ARRAY_SIZE(crypto_ccm_tmpls)); | |
4a49b499 JL |
946 | } |
947 | ||
c4741b23 | 948 | subsys_initcall(crypto_ccm_module_init); |
4a49b499 JL |
949 | module_exit(crypto_ccm_module_exit); |
950 | ||
951 | MODULE_LICENSE("GPL"); | |
952 | MODULE_DESCRIPTION("Counter with CBC MAC"); | |
5d26a105 KC |
953 | MODULE_ALIAS_CRYPTO("ccm_base"); |
954 | MODULE_ALIAS_CRYPTO("rfc4309"); | |
4943ba16 | 955 | MODULE_ALIAS_CRYPTO("ccm"); |
ae748b9c | 956 | MODULE_ALIAS_CRYPTO("cbcmac"); |
0eb76ba2 | 957 | MODULE_IMPORT_NS(CRYPTO_INTERNAL); |