From 5b141eb9ec84ba45e331c3839902ea4519a65f1e Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 6 Aug 2017 19:17:25 +0200 Subject: [PATCH] Add some blank lines for readability --- src/libsodium/include/sodium/crypto_aead_aes256gcm.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/libsodium/include/sodium/crypto_aead_aes256gcm.h b/src/libsodium/include/sodium/crypto_aead_aes256gcm.h index 2089d1e3..46a3800f 100644 --- a/src/libsodium/include/sodium/crypto_aead_aes256gcm.h +++ b/src/libsodium/include/sodium/crypto_aead_aes256gcm.h @@ -9,9 +9,11 @@ * This is for ~ 16 KB messages -- Actual figures vary according to * message sizes. * - * In addition, repeated nonces would totally destroy the security of this - * scheme. Nonces should thus come from atomic counters, which can be - * difficult to set up in a distributed environment. + * In addition, nonces are short and repeated nonces would totally destroy + * the security of this scheme. + * + * Nonces should thus come from atomic counters, which can be difficult to + * set up in a distributed environment. * * Unless you absolutely need AES-GCM, use crypto_aead_xchacha20poly1305_ietf_*() * instead. It doesn't have any of these limitations.