From 2838bcd04c7df9bd9da1f29522eff10202d302f0 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 23 Feb 2017 10:12:43 +0100 Subject: [PATCH] Indent --- src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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; }