]> git.sesse.net Git - bcachefs-tools-debian/blob - include/crypto/poly1305.h
remove library from bcachefs-tools Rust package
[bcachefs-tools-debian] / include / crypto / poly1305.h
1 /*
2  * Common values for the Poly1305 algorithm
3  */
4
5 #ifndef _CRYPTO_POLY1305_H
6 #define _CRYPTO_POLY1305_H
7
8 #include <sodium/crypto_onetimeauth_poly1305.h>
9
10 #define POLY1305_KEY_SIZE       crypto_onetimeauth_poly1305_KEYBYTES
11 #define POLY1305_DIGEST_SIZE    crypto_onetimeauth_poly1305_BYTES
12
13 #endif