mtd: nand: omap: Fix comment in platform data using wrong Kconfig symbol
[linux/fpc-iii.git] / arch / x86 / crypto / nhpoly1305-sse2-glue.c
blobed68d164ce1402ee971737c96575a2d0ea4dc42f
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum
4 * (SSE2 accelerated version)
6 * Copyright 2018 Google LLC
7 */
9 #include <crypto/internal/hash.h>
10 #include <crypto/nhpoly1305.h>
11 #include <linux/module.h>
12 #include <asm/fpu/api.h>
14 asmlinkage void nh_sse2(const u32 *key, const u8 *message, size_t message_len,
15 u8 hash[NH_HASH_BYTES]);
17 /* wrapper to avoid indirect call to assembly, which doesn't work with CFI */
18 static void _nh_sse2(const u32 *key, const u8 *message, size_t message_len,
19 __le64 hash[NH_NUM_PASSES])
21 nh_sse2(key, message, message_len, (u8 *)hash);
24 static int nhpoly1305_sse2_update(struct shash_desc *desc,
25 const u8 *src, unsigned int srclen)
27 if (srclen < 64 || !irq_fpu_usable())
28 return crypto_nhpoly1305_update(desc, src, srclen);
30 do {
31 unsigned int n = min_t(unsigned int, srclen, PAGE_SIZE);
33 kernel_fpu_begin();
34 crypto_nhpoly1305_update_helper(desc, src, n, _nh_sse2);
35 kernel_fpu_end();
36 src += n;
37 srclen -= n;
38 } while (srclen);
39 return 0;
42 static struct shash_alg nhpoly1305_alg = {
43 .base.cra_name = "nhpoly1305",
44 .base.cra_driver_name = "nhpoly1305-sse2",
45 .base.cra_priority = 200,
46 .base.cra_ctxsize = sizeof(struct nhpoly1305_key),
47 .base.cra_module = THIS_MODULE,
48 .digestsize = POLY1305_DIGEST_SIZE,
49 .init = crypto_nhpoly1305_init,
50 .update = nhpoly1305_sse2_update,
51 .final = crypto_nhpoly1305_final,
52 .setkey = crypto_nhpoly1305_setkey,
53 .descsize = sizeof(struct nhpoly1305_state),
56 static int __init nhpoly1305_mod_init(void)
58 if (!boot_cpu_has(X86_FEATURE_XMM2))
59 return -ENODEV;
61 return crypto_register_shash(&nhpoly1305_alg);
64 static void __exit nhpoly1305_mod_exit(void)
66 crypto_unregister_shash(&nhpoly1305_alg);
69 module_init(nhpoly1305_mod_init);
70 module_exit(nhpoly1305_mod_exit);
72 MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function (SSE2-accelerated)");
73 MODULE_LICENSE("GPL v2");
74 MODULE_AUTHOR("Eric Biggers <ebiggers@google.com>");
75 MODULE_ALIAS_CRYPTO("nhpoly1305");
76 MODULE_ALIAS_CRYPTO("nhpoly1305-sse2");