mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
This function definition was created by an automated script that incorrectly handled a corner case.
17 lines
315 B
C
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";
|
|
}
|