diff --git a/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c index 184ad3fb..fbd7afc9 100644 --- a/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c +++ b/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c @@ -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; }