This commit is contained in:
Frank Denis 2017-02-23 10:12:43 +01:00
parent a70446a127
commit 2838bcd04c

View File

@ -1,16 +1,19 @@
#include "crypto_stream_aes128ctr.h"
size_t
crypto_stream_aes128ctr_keybytes(void) {
crypto_stream_aes128ctr_keybytes(void)
{
return crypto_stream_aes128ctr_KEYBYTES;
}
size_t
crypto_stream_aes128ctr_noncebytes(void) {
crypto_stream_aes128ctr_noncebytes(void)
{
return crypto_stream_aes128ctr_NONCEBYTES;
}
size_t
crypto_stream_aes128ctr_beforenmbytes(void) {
crypto_stream_aes128ctr_beforenmbytes(void)
{
return crypto_stream_aes128ctr_BEFORENMBYTES;
}