blob: 256084e53b7af444cf7194c7a25e1598d80c41f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "crypto_stream_xsalsa20.h"
size_t
crypto_stream_xsalsa20_keybytes(void) {
return crypto_stream_xsalsa20_KEYBYTES;
}
size_t
crypto_stream_xsalsa20_noncebytes(void) {
return crypto_stream_xsalsa20_NONCEBYTES;
}
|