blob: 74c6e1cd73eee15321baf92fa96bb78c10a779ff [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Martin Willi2546f812015-07-16 19:14:05 +02002/*
3 * Common values for the Poly1305 algorithm
4 */
5
6#ifndef _CRYPTO_POLY1305_H
7#define _CRYPTO_POLY1305_H
8
9#include <linux/types.h>
10#include <linux/crypto.h>
11
12#define POLY1305_BLOCK_SIZE 16
13#define POLY1305_KEY_SIZE 32
14#define POLY1305_DIGEST_SIZE 16
15
Eric Biggers9d4eee32018-11-16 17:26:27 -080016struct poly1305_key {
17 u32 r[5]; /* key, base 2^26 */
18};
19
20struct poly1305_state {
21 u32 h[5]; /* accumulator, base 2^26 */
22};
23
Martin Willi2546f812015-07-16 19:14:05 +020024struct poly1305_desc_ctx {
Martin Willi2546f812015-07-16 19:14:05 +020025 /* partial buffer */
26 u8 buf[POLY1305_BLOCK_SIZE];
27 /* bytes used in partial buffer */
28 unsigned int buflen;
Ard Biesheuvelc99c6272019-11-08 13:22:20 +010029 /* how many keys have been set in r[] */
30 unsigned short rset;
31 /* whether s[] has been set */
Martin Willi2546f812015-07-16 19:14:05 +020032 bool sset;
Ard Biesheuvelc99c6272019-11-08 13:22:20 +010033 /* finalize key */
34 u32 s[4];
35 /* accumulator */
36 struct poly1305_state h;
37 /* key */
Ard Biesheuveld1fa3dd2019-11-08 13:22:21 +010038 struct poly1305_key r[CONFIG_CRYPTO_LIB_POLY1305_RSIZE];
Martin Willi2546f812015-07-16 19:14:05 +020039};
40
Ard Biesheuveld1fa3dd2019-11-08 13:22:21 +010041void poly1305_init_arch(struct poly1305_desc_ctx *desc, const u8 *key);
42void poly1305_init_generic(struct poly1305_desc_ctx *desc, const u8 *key);
43
44static inline void poly1305_init(struct poly1305_desc_ctx *desc, const u8 *key)
45{
46 if (IS_ENABLED(CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305))
47 poly1305_init_arch(desc, key);
48 else
49 poly1305_init_generic(desc, key);
50}
51
52void poly1305_update_arch(struct poly1305_desc_ctx *desc, const u8 *src,
53 unsigned int nbytes);
54void poly1305_update_generic(struct poly1305_desc_ctx *desc, const u8 *src,
55 unsigned int nbytes);
56
57static inline void poly1305_update(struct poly1305_desc_ctx *desc,
58 const u8 *src, unsigned int nbytes)
59{
60 if (IS_ENABLED(CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305))
61 poly1305_update_arch(desc, src, nbytes);
62 else
63 poly1305_update_generic(desc, src, nbytes);
64}
65
66void poly1305_final_arch(struct poly1305_desc_ctx *desc, u8 *digest);
67void poly1305_final_generic(struct poly1305_desc_ctx *desc, u8 *digest);
68
69static inline void poly1305_final(struct poly1305_desc_ctx *desc, u8 *digest)
70{
71 if (IS_ENABLED(CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305))
72 poly1305_final_arch(desc, digest);
73 else
74 poly1305_final_generic(desc, digest);
75}
76
Martin Willi2546f812015-07-16 19:14:05 +020077#endif