9a640158328e125a3a13ac3a2c8228152dbeb08d
[tinc] / src / chacha-poly1305 / poly1305.h
1 /* $OpenBSD: poly1305.h,v 1.2 2013/12/19 22:57:13 djm Exp $ */
2
3 /* 
4  * Public Domain poly1305 from Andrew Moon
5  * poly1305-donna-unrolled.c from https://github.com/floodyberry/poly1305-donna
6  */
7
8 #ifndef POLY1305_H
9 #define POLY1305_H
10
11 #define POLY1305_KEYLEN         32
12 #define POLY1305_TAGLEN         16
13
14 void poly1305_auth(uint8_t out[POLY1305_TAGLEN], const uint8_t *m, size_t inlen, const uint8_t key[POLY1305_KEYLEN]);
15
16 #endif                          /* POLY1305_H */