diff --git a/.clang-format b/.clang-format index 23d43c4..bba1f29 100644 --- a/.clang-format +++ b/.clang-format @@ -203,7 +203,7 @@ RawStringFormats: CanonicalDelimiter: pb BasedOnStyle: google ReferenceAlignment: Pointer -ReflowComments: true +ReflowComments: false RemoveBracesLLVM: false RemoveParentheses: Leave RemoveSemicolon: false diff --git a/chacha20.h b/chacha20.h index fced4d6..42853ad 100644 --- a/chacha20.h +++ b/chacha20.h @@ -45,8 +45,10 @@ * bzero(buf, 64); * * - * Usage example 2: CSPRNG (cryptographically secure pseudo random number - * generator) slowcrypt_chacha20 state[2]; uint32_t ctr = 1; char buf[64]; + * Usage example 2: CSPRNG (cryptographically secure pseudo random number generator) + * slowcrypt_chacha20 state[2]; + * uint32_t ctr = 1; + * char buf[64]; * * while need random numbers { * slowcrypt_chacha20_init(state, key, block_ctr, nonce);