summaryrefslogtreecommitdiff
path: root/c_src/include/crypto/poly1305.h
blob: 9fcfbfeb16ea9a537eb5f9f6df95f3b6c96defac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Common values for the Poly1305 algorithm
 */

#ifndef _CRYPTO_POLY1305_H
#define _CRYPTO_POLY1305_H

#include <sodium/crypto_onetimeauth_poly1305.h>

#define POLY1305_KEY_SIZE	crypto_onetimeauth_poly1305_KEYBYTES
#define POLY1305_DIGEST_SIZE	crypto_onetimeauth_poly1305_BYTES

#endif