aboutsummaryrefslogtreecommitdiff
path: root/include/crypto/clmul.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-07-10 15:38:28 +0100
committerRichard Henderson <richard.henderson@linaro.org>2023-09-15 13:56:59 +0000
commit07f348d77c35b6ff1f99075e20bffbf67e772d8b (patch)
treec494a756066e9c2a880d6e5c23897943d7e834da /include/crypto/clmul.h
parent005ad32358f12fe9313a4a01918a55e60d4f39e5 (diff)
downloadqemu-07f348d77c35b6ff1f99075e20bffbf67e772d8b.zip
qemu-07f348d77c35b6ff1f99075e20bffbf67e772d8b.tar.gz
qemu-07f348d77c35b6ff1f99075e20bffbf67e772d8b.tar.bz2
crypto: Add generic 8-bit carry-less multiply routines
Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/crypto/clmul.h')
-rw-r--r--include/crypto/clmul.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/include/crypto/clmul.h b/include/crypto/clmul.h
new file mode 100644
index 0000000..153b5e3
--- /dev/null
+++ b/include/crypto/clmul.h
@@ -0,0 +1,41 @@
+/*
+ * Carry-less multiply operations.
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ *
+ * Copyright (C) 2023 Linaro, Ltd.
+ */
+
+#ifndef CRYPTO_CLMUL_H
+#define CRYPTO_CLMUL_H
+
+/**
+ * clmul_8x8_low:
+ *
+ * Perform eight 8x8->8 carry-less multiplies.
+ */
+uint64_t clmul_8x8_low(uint64_t, uint64_t);
+
+/**
+ * clmul_8x4_even:
+ *
+ * Perform four 8x8->16 carry-less multiplies.
+ * The odd bytes of the inputs are ignored.
+ */
+uint64_t clmul_8x4_even(uint64_t, uint64_t);
+
+/**
+ * clmul_8x4_odd:
+ *
+ * Perform four 8x8->16 carry-less multiplies.
+ * The even bytes of the inputs are ignored.
+ */
+uint64_t clmul_8x4_odd(uint64_t, uint64_t);
+
+/**
+ * clmul_8x4_packed:
+ *
+ * Perform four 8x8->16 carry-less multiplies.
+ */
+uint64_t clmul_8x4_packed(uint32_t, uint32_t);
+
+#endif /* CRYPTO_CLMUL_H */