crypto: aegis128 - expose SIMD code path as separate driver
[linux-block.git] / crypto / aegis128-core.c
CommitLineData
bb4ce825 1// SPDX-License-Identifier: GPL-2.0-or-later
f606a88e
OM
2/*
3 * The AEGIS-128 Authenticated-Encryption Algorithm
4 *
5 * Copyright (c) 2017-2018 Ondrej Mosnacek <omosnacek@gmail.com>
6 * Copyright (C) 2017-2018 Red Hat, Inc. All rights reserved.
f606a88e
OM
7 */
8
9#include <crypto/algapi.h>
10#include <crypto/internal/aead.h>
cf3d41ad 11#include <crypto/internal/simd.h>
f606a88e
OM
12#include <crypto/internal/skcipher.h>
13#include <crypto/scatterwalk.h>
14#include <linux/err.h>
15#include <linux/init.h>
2698bce1 16#include <linux/jump_label.h>
f606a88e
OM
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/scatterlist.h>
20
cf3d41ad
AB
21#include <asm/simd.h>
22
f606a88e
OM
23#include "aegis.h"
24
25#define AEGIS128_NONCE_SIZE 16
26#define AEGIS128_STATE_BLOCKS 5
27#define AEGIS128_KEY_SIZE 16
28#define AEGIS128_MIN_AUTH_SIZE 8
29#define AEGIS128_MAX_AUTH_SIZE 16
30
31struct aegis_state {
32 union aegis_block blocks[AEGIS128_STATE_BLOCKS];
33};
34
35struct aegis_ctx {
36 union aegis_block key;
37};
38
2698bce1 39static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_simd);
cf3d41ad 40
f1d087b9
Y
41static const union aegis_block crypto_aegis_const[2] = {
42 { .words64 = {
43 cpu_to_le64(U64_C(0x0d08050302010100)),
44 cpu_to_le64(U64_C(0x6279e99059372215)),
45 } },
46 { .words64 = {
47 cpu_to_le64(U64_C(0xf12fc26d55183ddb)),
48 cpu_to_le64(U64_C(0xdd28b57342311120)),
49 } },
50};
51
cf3d41ad
AB
52static bool aegis128_do_simd(void)
53{
54#ifdef CONFIG_CRYPTO_AEGIS128_SIMD
2698bce1 55 if (static_branch_likely(&have_simd))
cf3d41ad
AB
56 return crypto_simd_usable();
57#endif
58 return false;
59}
60
61bool crypto_aegis128_have_simd(void);
62void crypto_aegis128_update_simd(struct aegis_state *state, const void *msg);
52828263
AB
63void crypto_aegis128_init_simd(struct aegis_state *state,
64 const union aegis_block *key,
65 const u8 *iv);
cf3d41ad
AB
66void crypto_aegis128_encrypt_chunk_simd(struct aegis_state *state, u8 *dst,
67 const u8 *src, unsigned int size);
68void crypto_aegis128_decrypt_chunk_simd(struct aegis_state *state, u8 *dst,
69 const u8 *src, unsigned int size);
97b70180
AB
70int crypto_aegis128_final_simd(struct aegis_state *state,
71 union aegis_block *tag_xor,
72 unsigned int assoclen,
73 unsigned int cryptlen,
74 unsigned int authsize);
cf3d41ad 75
f606a88e
OM
76static void crypto_aegis128_update(struct aegis_state *state)
77{
78 union aegis_block tmp;
79 unsigned int i;
80
81 tmp = state->blocks[AEGIS128_STATE_BLOCKS - 1];
82 for (i = AEGIS128_STATE_BLOCKS - 1; i > 0; i--)
83 crypto_aegis_aesenc(&state->blocks[i], &state->blocks[i - 1],
84 &state->blocks[i]);
85 crypto_aegis_aesenc(&state->blocks[0], &tmp, &state->blocks[0]);
86}
87
88static void crypto_aegis128_update_a(struct aegis_state *state,
ac50aec4
AB
89 const union aegis_block *msg,
90 bool do_simd)
f606a88e 91{
ac50aec4 92 if (do_simd) {
cf3d41ad
AB
93 crypto_aegis128_update_simd(state, msg);
94 return;
95 }
96
f606a88e
OM
97 crypto_aegis128_update(state);
98 crypto_aegis_block_xor(&state->blocks[0], msg);
99}
100
ac50aec4
AB
101static void crypto_aegis128_update_u(struct aegis_state *state, const void *msg,
102 bool do_simd)
f606a88e 103{
ac50aec4 104 if (do_simd) {
cf3d41ad
AB
105 crypto_aegis128_update_simd(state, msg);
106 return;
107 }
108
f606a88e
OM
109 crypto_aegis128_update(state);
110 crypto_xor(state->blocks[0].bytes, msg, AEGIS_BLOCK_SIZE);
111}
112
113static void crypto_aegis128_init(struct aegis_state *state,
114 const union aegis_block *key,
115 const u8 *iv)
116{
117 union aegis_block key_iv;
118 unsigned int i;
119
120 key_iv = *key;
121 crypto_xor(key_iv.bytes, iv, AEGIS_BLOCK_SIZE);
122
123 state->blocks[0] = key_iv;
124 state->blocks[1] = crypto_aegis_const[1];
125 state->blocks[2] = crypto_aegis_const[0];
126 state->blocks[3] = *key;
127 state->blocks[4] = *key;
128
129 crypto_aegis_block_xor(&state->blocks[3], &crypto_aegis_const[0]);
130 crypto_aegis_block_xor(&state->blocks[4], &crypto_aegis_const[1]);
131
132 for (i = 0; i < 5; i++) {
ac50aec4
AB
133 crypto_aegis128_update_a(state, key, false);
134 crypto_aegis128_update_a(state, &key_iv, false);
f606a88e
OM
135 }
136}
137
138static void crypto_aegis128_ad(struct aegis_state *state,
ac50aec4
AB
139 const u8 *src, unsigned int size,
140 bool do_simd)
f606a88e
OM
141{
142 if (AEGIS_ALIGNED(src)) {
143 const union aegis_block *src_blk =
144 (const union aegis_block *)src;
145
146 while (size >= AEGIS_BLOCK_SIZE) {
ac50aec4 147 crypto_aegis128_update_a(state, src_blk, do_simd);
f606a88e
OM
148
149 size -= AEGIS_BLOCK_SIZE;
150 src_blk++;
151 }
152 } else {
153 while (size >= AEGIS_BLOCK_SIZE) {
ac50aec4 154 crypto_aegis128_update_u(state, src, do_simd);
f606a88e
OM
155
156 size -= AEGIS_BLOCK_SIZE;
157 src += AEGIS_BLOCK_SIZE;
158 }
159 }
160}
161
02685906
AB
162static void crypto_aegis128_wipe_chunk(struct aegis_state *state, u8 *dst,
163 const u8 *src, unsigned int size)
164{
165 memzero_explicit(dst, size);
166}
167
f606a88e
OM
168static void crypto_aegis128_encrypt_chunk(struct aegis_state *state, u8 *dst,
169 const u8 *src, unsigned int size)
170{
171 union aegis_block tmp;
172
173 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) {
174 while (size >= AEGIS_BLOCK_SIZE) {
175 union aegis_block *dst_blk =
176 (union aegis_block *)dst;
177 const union aegis_block *src_blk =
178 (const union aegis_block *)src;
179
180 tmp = state->blocks[2];
181 crypto_aegis_block_and(&tmp, &state->blocks[3]);
182 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
183 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
184 crypto_aegis_block_xor(&tmp, src_blk);
185
ac50aec4 186 crypto_aegis128_update_a(state, src_blk, false);
f606a88e
OM
187
188 *dst_blk = tmp;
189
190 size -= AEGIS_BLOCK_SIZE;
191 src += AEGIS_BLOCK_SIZE;
192 dst += AEGIS_BLOCK_SIZE;
193 }
194 } else {
195 while (size >= AEGIS_BLOCK_SIZE) {
196 tmp = state->blocks[2];
197 crypto_aegis_block_and(&tmp, &state->blocks[3]);
198 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
199 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
200 crypto_xor(tmp.bytes, src, AEGIS_BLOCK_SIZE);
201
ac50aec4 202 crypto_aegis128_update_u(state, src, false);
f606a88e
OM
203
204 memcpy(dst, tmp.bytes, AEGIS_BLOCK_SIZE);
205
206 size -= AEGIS_BLOCK_SIZE;
207 src += AEGIS_BLOCK_SIZE;
208 dst += AEGIS_BLOCK_SIZE;
209 }
210 }
211
212 if (size > 0) {
213 union aegis_block msg = {};
214 memcpy(msg.bytes, src, size);
215
216 tmp = state->blocks[2];
217 crypto_aegis_block_and(&tmp, &state->blocks[3]);
218 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
219 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
220
ac50aec4 221 crypto_aegis128_update_a(state, &msg, false);
f606a88e
OM
222
223 crypto_aegis_block_xor(&msg, &tmp);
224
225 memcpy(dst, msg.bytes, size);
226 }
227}
228
229static void crypto_aegis128_decrypt_chunk(struct aegis_state *state, u8 *dst,
230 const u8 *src, unsigned int size)
231{
232 union aegis_block tmp;
233
234 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) {
235 while (size >= AEGIS_BLOCK_SIZE) {
236 union aegis_block *dst_blk =
237 (union aegis_block *)dst;
238 const union aegis_block *src_blk =
239 (const union aegis_block *)src;
240
241 tmp = state->blocks[2];
242 crypto_aegis_block_and(&tmp, &state->blocks[3]);
243 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
244 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
245 crypto_aegis_block_xor(&tmp, src_blk);
246
ac50aec4 247 crypto_aegis128_update_a(state, &tmp, false);
f606a88e
OM
248
249 *dst_blk = tmp;
250
251 size -= AEGIS_BLOCK_SIZE;
252 src += AEGIS_BLOCK_SIZE;
253 dst += AEGIS_BLOCK_SIZE;
254 }
255 } else {
256 while (size >= AEGIS_BLOCK_SIZE) {
257 tmp = state->blocks[2];
258 crypto_aegis_block_and(&tmp, &state->blocks[3]);
259 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
260 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
261 crypto_xor(tmp.bytes, src, AEGIS_BLOCK_SIZE);
262
ac50aec4 263 crypto_aegis128_update_a(state, &tmp, false);
f606a88e
OM
264
265 memcpy(dst, tmp.bytes, AEGIS_BLOCK_SIZE);
266
267 size -= AEGIS_BLOCK_SIZE;
268 src += AEGIS_BLOCK_SIZE;
269 dst += AEGIS_BLOCK_SIZE;
270 }
271 }
272
273 if (size > 0) {
274 union aegis_block msg = {};
275 memcpy(msg.bytes, src, size);
276
277 tmp = state->blocks[2];
278 crypto_aegis_block_and(&tmp, &state->blocks[3]);
279 crypto_aegis_block_xor(&tmp, &state->blocks[4]);
280 crypto_aegis_block_xor(&tmp, &state->blocks[1]);
281 crypto_aegis_block_xor(&msg, &tmp);
282
283 memset(msg.bytes + size, 0, AEGIS_BLOCK_SIZE - size);
284
ac50aec4 285 crypto_aegis128_update_a(state, &msg, false);
f606a88e
OM
286
287 memcpy(dst, msg.bytes, size);
288 }
289}
290
291static void crypto_aegis128_process_ad(struct aegis_state *state,
292 struct scatterlist *sg_src,
ac50aec4
AB
293 unsigned int assoclen,
294 bool do_simd)
f606a88e
OM
295{
296 struct scatter_walk walk;
297 union aegis_block buf;
298 unsigned int pos = 0;
299
300 scatterwalk_start(&walk, sg_src);
301 while (assoclen != 0) {
302 unsigned int size = scatterwalk_clamp(&walk, assoclen);
303 unsigned int left = size;
304 void *mapped = scatterwalk_map(&walk);
305 const u8 *src = (const u8 *)mapped;
306
307 if (pos + size >= AEGIS_BLOCK_SIZE) {
308 if (pos > 0) {
309 unsigned int fill = AEGIS_BLOCK_SIZE - pos;
310 memcpy(buf.bytes + pos, src, fill);
ac50aec4 311 crypto_aegis128_update_a(state, &buf, do_simd);
f606a88e
OM
312 pos = 0;
313 left -= fill;
314 src += fill;
315 }
316
ac50aec4 317 crypto_aegis128_ad(state, src, left, do_simd);
f606a88e
OM
318 src += left & ~(AEGIS_BLOCK_SIZE - 1);
319 left &= AEGIS_BLOCK_SIZE - 1;
320 }
321
322 memcpy(buf.bytes + pos, src, left);
323
324 pos += left;
325 assoclen -= size;
326 scatterwalk_unmap(mapped);
327 scatterwalk_advance(&walk, size);
328 scatterwalk_done(&walk, 0, assoclen);
329 }
330
331 if (pos > 0) {
332 memset(buf.bytes + pos, 0, AEGIS_BLOCK_SIZE - pos);
ac50aec4 333 crypto_aegis128_update_a(state, &buf, do_simd);
f606a88e
OM
334 }
335}
336
2698bce1
AB
337static __always_inline
338int crypto_aegis128_process_crypt(struct aegis_state *state,
2698bce1
AB
339 struct skcipher_walk *walk,
340 void (*crypt)(struct aegis_state *state,
341 u8 *dst, const u8 *src,
342 unsigned int size))
f606a88e 343{
2698bce1 344 int err = 0;
f606a88e 345
2698bce1
AB
346 while (walk->nbytes) {
347 unsigned int nbytes = walk->nbytes;
f606a88e 348
2698bce1
AB
349 if (nbytes < walk->total)
350 nbytes = round_down(nbytes, walk->stride);
f606a88e 351
2698bce1 352 crypt(state, walk->dst.virt.addr, walk->src.virt.addr, nbytes);
f606a88e 353
2698bce1 354 err = skcipher_walk_done(walk, walk->nbytes - nbytes);
f606a88e 355 }
2698bce1 356 return err;
f606a88e
OM
357}
358
359static void crypto_aegis128_final(struct aegis_state *state,
360 union aegis_block *tag_xor,
361 u64 assoclen, u64 cryptlen)
362{
363 u64 assocbits = assoclen * 8;
364 u64 cryptbits = cryptlen * 8;
365
366 union aegis_block tmp;
367 unsigned int i;
368
369 tmp.words64[0] = cpu_to_le64(assocbits);
370 tmp.words64[1] = cpu_to_le64(cryptbits);
371
372 crypto_aegis_block_xor(&tmp, &state->blocks[3]);
373
374 for (i = 0; i < 7; i++)
ac50aec4 375 crypto_aegis128_update_a(state, &tmp, false);
f606a88e
OM
376
377 for (i = 0; i < AEGIS128_STATE_BLOCKS; i++)
378 crypto_aegis_block_xor(tag_xor, &state->blocks[i]);
379}
380
381static int crypto_aegis128_setkey(struct crypto_aead *aead, const u8 *key,
382 unsigned int keylen)
383{
384 struct aegis_ctx *ctx = crypto_aead_ctx(aead);
385
674f368a 386 if (keylen != AEGIS128_KEY_SIZE)
f606a88e 387 return -EINVAL;
f606a88e
OM
388
389 memcpy(ctx->key.bytes, key, AEGIS128_KEY_SIZE);
390 return 0;
391}
392
393static int crypto_aegis128_setauthsize(struct crypto_aead *tfm,
394 unsigned int authsize)
395{
396 if (authsize > AEGIS128_MAX_AUTH_SIZE)
397 return -EINVAL;
398 if (authsize < AEGIS128_MIN_AUTH_SIZE)
399 return -EINVAL;
400 return 0;
401}
402
ac50aec4 403static int crypto_aegis128_encrypt_generic(struct aead_request *req)
f606a88e
OM
404{
405 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2698bce1
AB
406 union aegis_block tag = {};
407 unsigned int authsize = crypto_aead_authsize(tfm);
f606a88e 408 struct aegis_ctx *ctx = crypto_aead_ctx(tfm);
2698bce1
AB
409 unsigned int cryptlen = req->cryptlen;
410 struct skcipher_walk walk;
f606a88e
OM
411 struct aegis_state state;
412
2698bce1 413 skcipher_walk_aead_encrypt(&walk, req, false);
ac50aec4
AB
414 crypto_aegis128_init(&state, &ctx->key, req->iv);
415 crypto_aegis128_process_ad(&state, req->src, req->assoclen, false);
416 crypto_aegis128_process_crypt(&state, &walk,
417 crypto_aegis128_encrypt_chunk);
418 crypto_aegis128_final(&state, &tag, req->assoclen, cryptlen);
f606a88e
OM
419
420 scatterwalk_map_and_copy(tag.bytes, req->dst, req->assoclen + cryptlen,
421 authsize, 1);
422 return 0;
423}
424
ac50aec4 425static int crypto_aegis128_decrypt_generic(struct aead_request *req)
f606a88e 426{
f606a88e 427 static const u8 zeros[AEGIS128_MAX_AUTH_SIZE] = {};
f606a88e
OM
428 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
429 union aegis_block tag;
430 unsigned int authsize = crypto_aead_authsize(tfm);
431 unsigned int cryptlen = req->cryptlen - authsize;
2698bce1
AB
432 struct aegis_ctx *ctx = crypto_aead_ctx(tfm);
433 struct skcipher_walk walk;
434 struct aegis_state state;
f606a88e
OM
435
436 scatterwalk_map_and_copy(tag.bytes, req->src, req->assoclen + cryptlen,
437 authsize, 0);
438
2698bce1 439 skcipher_walk_aead_decrypt(&walk, req, false);
ac50aec4
AB
440 crypto_aegis128_init(&state, &ctx->key, req->iv);
441 crypto_aegis128_process_ad(&state, req->src, req->assoclen, false);
442 crypto_aegis128_process_crypt(&state, &walk,
443 crypto_aegis128_decrypt_chunk);
444 crypto_aegis128_final(&state, &tag, req->assoclen, cryptlen);
f606a88e 445
02685906
AB
446 if (unlikely(crypto_memneq(tag.bytes, zeros, authsize))) {
447 /*
448 * From Chapter 4. 'Security Analysis' of the AEGIS spec [0]
449 *
450 * "3. If verification fails, the decrypted plaintext and the
451 * wrong authentication tag should not be given as output."
452 *
453 * [0] https://competitions.cr.yp.to/round3/aegisv11.pdf
454 */
455 skcipher_walk_aead_decrypt(&walk, req, false);
456 crypto_aegis128_process_crypt(NULL, &walk,
457 crypto_aegis128_wipe_chunk);
458 memzero_explicit(&tag, sizeof(tag));
459 return -EBADMSG;
460 }
461 return 0;
f606a88e
OM
462}
463
ac50aec4
AB
464static int crypto_aegis128_encrypt_simd(struct aead_request *req)
465{
466 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
467 union aegis_block tag = {};
468 unsigned int authsize = crypto_aead_authsize(tfm);
469 struct aegis_ctx *ctx = crypto_aead_ctx(tfm);
470 unsigned int cryptlen = req->cryptlen;
471 struct skcipher_walk walk;
472 struct aegis_state state;
f606a88e 473
ac50aec4
AB
474 if (!aegis128_do_simd())
475 return crypto_aegis128_encrypt_generic(req);
f606a88e 476
ac50aec4
AB
477 skcipher_walk_aead_encrypt(&walk, req, false);
478 crypto_aegis128_init_simd(&state, &ctx->key, req->iv);
479 crypto_aegis128_process_ad(&state, req->src, req->assoclen, true);
480 crypto_aegis128_process_crypt(&state, &walk,
481 crypto_aegis128_encrypt_chunk_simd);
482 crypto_aegis128_final_simd(&state, &tag, req->assoclen, cryptlen, 0);
f606a88e 483
ac50aec4
AB
484 scatterwalk_map_and_copy(tag.bytes, req->dst, req->assoclen + cryptlen,
485 authsize, 1);
486 return 0;
487}
f606a88e 488
ac50aec4
AB
489static int crypto_aegis128_decrypt_simd(struct aead_request *req)
490{
491 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
492 union aegis_block tag;
493 unsigned int authsize = crypto_aead_authsize(tfm);
494 unsigned int cryptlen = req->cryptlen - authsize;
495 struct aegis_ctx *ctx = crypto_aead_ctx(tfm);
496 struct skcipher_walk walk;
497 struct aegis_state state;
f606a88e 498
ac50aec4
AB
499 if (!aegis128_do_simd())
500 return crypto_aegis128_decrypt_generic(req);
501
502 scatterwalk_map_and_copy(tag.bytes, req->src, req->assoclen + cryptlen,
503 authsize, 0);
504
505 skcipher_walk_aead_decrypt(&walk, req, false);
506 crypto_aegis128_init_simd(&state, &ctx->key, req->iv);
507 crypto_aegis128_process_ad(&state, req->src, req->assoclen, true);
508 crypto_aegis128_process_crypt(&state, &walk,
509 crypto_aegis128_decrypt_chunk_simd);
510
511 if (unlikely(crypto_aegis128_final_simd(&state, &tag, req->assoclen,
512 cryptlen, authsize))) {
513 skcipher_walk_aead_decrypt(&walk, req, false);
514 crypto_aegis128_process_crypt(NULL, &walk,
515 crypto_aegis128_wipe_chunk);
516 return -EBADMSG;
f606a88e 517 }
ac50aec4
AB
518 return 0;
519}
520
521static struct aead_alg crypto_aegis128_alg_generic = {
522 .setkey = crypto_aegis128_setkey,
523 .setauthsize = crypto_aegis128_setauthsize,
524 .encrypt = crypto_aegis128_encrypt_generic,
525 .decrypt = crypto_aegis128_decrypt_generic,
526
527 .ivsize = AEGIS128_NONCE_SIZE,
528 .maxauthsize = AEGIS128_MAX_AUTH_SIZE,
529 .chunksize = AEGIS_BLOCK_SIZE,
530
531 .base.cra_blocksize = 1,
532 .base.cra_ctxsize = sizeof(struct aegis_ctx),
533 .base.cra_alignmask = 0,
534 .base.cra_priority = 100,
535 .base.cra_name = "aegis128",
536 .base.cra_driver_name = "aegis128-generic",
537 .base.cra_module = THIS_MODULE,
538};
539
540static struct aead_alg crypto_aegis128_alg_simd = {
541 .setkey = crypto_aegis128_setkey,
542 .setauthsize = crypto_aegis128_setauthsize,
543 .encrypt = crypto_aegis128_encrypt_simd,
544 .decrypt = crypto_aegis128_decrypt_simd,
545
546 .ivsize = AEGIS128_NONCE_SIZE,
547 .maxauthsize = AEGIS128_MAX_AUTH_SIZE,
548 .chunksize = AEGIS_BLOCK_SIZE,
549
550 .base.cra_blocksize = 1,
551 .base.cra_ctxsize = sizeof(struct aegis_ctx),
552 .base.cra_alignmask = 0,
553 .base.cra_priority = 200,
554 .base.cra_name = "aegis128",
555 .base.cra_driver_name = "aegis128-simd",
556 .base.cra_module = THIS_MODULE,
f606a88e
OM
557};
558
559static int __init crypto_aegis128_module_init(void)
560{
ac50aec4
AB
561 int ret;
562
563 ret = crypto_register_aead(&crypto_aegis128_alg_generic);
564 if (ret)
565 return ret;
566
2698bce1 567 if (IS_ENABLED(CONFIG_CRYPTO_AEGIS128_SIMD) &&
ac50aec4
AB
568 crypto_aegis128_have_simd()) {
569 ret = crypto_register_aead(&crypto_aegis128_alg_simd);
570 if (ret) {
571 crypto_unregister_aead(&crypto_aegis128_alg_generic);
572 return ret;
573 }
2698bce1 574 static_branch_enable(&have_simd);
ac50aec4
AB
575 }
576 return 0;
f606a88e
OM
577}
578
579static void __exit crypto_aegis128_module_exit(void)
580{
ac50aec4
AB
581 if (IS_ENABLED(CONFIG_CRYPTO_AEGIS128_SIMD) &&
582 crypto_aegis128_have_simd())
583 crypto_unregister_aead(&crypto_aegis128_alg_simd);
584
585 crypto_unregister_aead(&crypto_aegis128_alg_generic);
f606a88e
OM
586}
587
c4741b23 588subsys_initcall(crypto_aegis128_module_init);
f606a88e
OM
589module_exit(crypto_aegis128_module_exit);
590
591MODULE_LICENSE("GPL");
592MODULE_AUTHOR("Ondrej Mosnacek <omosnacek@gmail.com>");
593MODULE_DESCRIPTION("AEGIS-128 AEAD algorithm");
594MODULE_ALIAS_CRYPTO("aegis128");
595MODULE_ALIAS_CRYPTO("aegis128-generic");
ac50aec4 596MODULE_ALIAS_CRYPTO("aegis128-simd");