]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Whitespace fix.
authorNiels Möller <nisse@lysator.liu.se>
Sat, 20 Jan 2018 10:55:50 +0000 (11:55 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Sat, 20 Jan 2018 10:55:50 +0000 (11:55 +0100)
cfb.c

diff --git a/cfb.c b/cfb.c
index 19cba4b5ba5dbfbd9a2455f7e6e8b9e4469baf4a..5429fc9c8afa11f3aa72171d68edbfa80bb1a3e9 100644 (file)
--- a/cfb.c
+++ b/cfb.c
@@ -167,9 +167,9 @@ cfb_decrypt(const void *ctx, nettle_cipher_func *f,
  * bytes and does memcpy/memxor afterwards */
 void
 cfb8_encrypt(const void *ctx, nettle_cipher_func *f,
-           size_t block_size, uint8_t *iv,
-           size_t length, uint8_t *dst,
-           const uint8_t *src)
+            size_t block_size, uint8_t *iv,
+            size_t length, uint8_t *dst,
+            const uint8_t *src)
 {
   TMP_DECL(buffer, uint8_t, NETTLE_MAX_CIPHER_BLOCK_SIZE * 2);
   TMP_DECL(outbuf, uint8_t, NETTLE_MAX_CIPHER_BLOCK_SIZE);