From 6fad3644b53021fb377ca1207fa6e1ac96d0b131 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 15 Jun 2016 16:00:59 +0200 Subject: [PATCH] Nits --- src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c b/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c index 5b000446..6410cf8b 100644 --- a/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +++ b/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c @@ -27,8 +27,8 @@ #ifdef _WIN32 /* `RtlGenRandom` is used over `CryptGenRandom` on Microsoft Windows based systems: * - `CryptGenRandom` requires pulling in `CryptoAPI` which causes unnecessary - * memory overhead if no other Cryptography functionally is required. - * - `RtlGenRandom` is thus called directly instead. A detailed explaination + * memory overhead if this API is not being used for other purposes + * - `RtlGenRandom` is thus called directly instead. A detailed explanation * can be found here: https://blogs.msdn.microsoft.com/michael_howard/2005/01/14/cryptographically-secure-random-number-on-windows-without-using-cryptoapi/ */ # include