![]() |
Bitcoin Core
25.99.0
P2P Digital Currency
|
#include <cstdlib>
#include <stdint.h>
Go to the source code of this file.
Macros | |
#define | POLY1305_KEYLEN 32 |
#define | POLY1305_TAGLEN 16 |
Functions | |
void | poly1305_auth (unsigned char out[POLY1305_TAGLEN], const unsigned char *m, size_t inlen, const unsigned char key[POLY1305_KEYLEN]) |
#define POLY1305_KEYLEN 32 |
Definition at line 11 of file poly1305.h.
#define POLY1305_TAGLEN 16 |
Definition at line 12 of file poly1305.h.
void poly1305_auth | ( | unsigned char | out[POLY1305_TAGLEN], |
const unsigned char * | m, | ||
size_t | inlen, | ||
const unsigned char | key[POLY1305_KEYLEN] | ||
) |
Definition at line 15 of file poly1305.cpp.