mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-27 20:27:12 +09:00
Proper xchacha20poly1305_MESSAGEBYTES_MAX definition
This commit is contained in:
@@ -30,7 +30,7 @@ SODIUM_EXPORT
|
||||
size_t crypto_secretstream_xchacha20poly1305_keybytes(void);
|
||||
|
||||
#define crypto_secretstream_xchacha20poly1305_MESSAGEBYTES_MAX \
|
||||
((1ULL << 32) - 2ULL * 64ULL)
|
||||
(((1ULL << 32) - 2ULL) * 64ULL)
|
||||
SODIUM_EXPORT
|
||||
size_t crypto_secretstream_xchacha20poly1305_messagebytes_max(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user