blob: 493244c46664c263f8c233c64c37dc4b937e95bb [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 {
25 /* key */
Eric Biggers9d4eee32018-11-16 17:26:27 -080026 struct poly1305_key r;
Martin Willi2546f812015-07-16 19:14:05 +020027 /* finalize key */
28 u32 s[4];
29 /* accumulator */
Eric Biggers9d4eee32018-11-16 17:26:27 -080030 struct poly1305_state h;
Martin Willi2546f812015-07-16 19:14:05 +020031 /* partial buffer */
32 u8 buf[POLY1305_BLOCK_SIZE];
33 /* bytes used in partial buffer */
34 unsigned int buflen;
35 /* r key has been set */
36 bool rset;
37 /* s key has been set */
38 bool sset;
39};
40
41int crypto_poly1305_init(struct shash_desc *desc);
Martin Willi2546f812015-07-16 19:14:05 +020042unsigned int crypto_poly1305_setdesckey(struct poly1305_desc_ctx *dctx,
43 const u8 *src, unsigned int srclen);
44int crypto_poly1305_update(struct shash_desc *desc,
45 const u8 *src, unsigned int srclen);
46int crypto_poly1305_final(struct shash_desc *desc, u8 *dst);
47
48#endif