Files
libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c
T
Stephen Touset 2a0f3d040f Fix definition of crypto_box_curve25519xsalsa20poly1305_macbytes
This function definition was created by an automated script that
incorrectly handled a corner case.
2013-05-16 15:27:28 -07:00

17 lines
315 B
C

#include "crypto_stream_salsa2012.h"
size_t
crypto_stream_salsa2012_keybytes(void) {
return crypto_stream_salsa2012_KEYBYTES;
}
size_t
crypto_stream_salsa2012_noncebytes(void) {
return crypto_stream_salsa2012_NONCEBYTES;
}
const char *
crypto_stream_salsa2012_primitive(void) {
return "salsa2012";
}