1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Common values for the Poly1305 algorithm
6 #ifndef _CRYPTO_POLY1305_H
7 #define _CRYPTO_POLY1305_H
9 #include <linux/types.h>
10 #include <linux/crypto.h>
12 #define POLY1305_BLOCK_SIZE 16
13 #define POLY1305_KEY_SIZE 32
14 #define POLY1305_DIGEST_SIZE 16
17 u32 r
[5]; /* key, base 2^26 */
20 struct poly1305_state
{
21 u32 h
[5]; /* accumulator, base 2^26 */
24 struct poly1305_desc_ctx
{
26 struct poly1305_key r
;
30 struct poly1305_state h
;
32 u8 buf
[POLY1305_BLOCK_SIZE
];
33 /* bytes used in partial buffer */
35 /* r key has been set */
37 /* s key has been set */
42 * Poly1305 core functions. These implement the ε-almost-∆-universal hash
43 * function underlying the Poly1305 MAC, i.e. they don't add an encrypted nonce
44 * ("s key") at the end. They also only support block-aligned inputs.
46 void poly1305_core_setkey(struct poly1305_key
*key
, const u8
*raw_key
);
47 static inline void poly1305_core_init(struct poly1305_state
*state
)
49 memset(state
->h
, 0, sizeof(state
->h
));
51 void poly1305_core_blocks(struct poly1305_state
*state
,
52 const struct poly1305_key
*key
,
53 const void *src
, unsigned int nblocks
);
54 void poly1305_core_emit(const struct poly1305_state
*state
, void *dst
);
56 /* Crypto API helper functions for the Poly1305 MAC */
57 int crypto_poly1305_init(struct shash_desc
*desc
);
58 unsigned int crypto_poly1305_setdesckey(struct poly1305_desc_ctx
*dctx
,
59 const u8
*src
, unsigned int srclen
);
60 int crypto_poly1305_update(struct shash_desc
*desc
,
61 const u8
*src
, unsigned int srclen
);
62 int crypto_poly1305_final(struct shash_desc
*desc
, u8
*dst
);