diff --git a/EonaCat.Crypto/Helpers/RandomNumberGeneratorCustom.cs b/EonaCat.Crypto/Helpers/RandomNumberGeneratorCustom.cs index b2e66f8..c4ba792 100644 --- a/EonaCat.Crypto/Helpers/RandomNumberGeneratorCustom.cs +++ b/EonaCat.Crypto/Helpers/RandomNumberGeneratorCustom.cs @@ -34,7 +34,7 @@ input[39 - i] = (byte)(counter >> 8 * i & 0xFF); } - // Compute hash output using your custom SHA256 implementation + // Compute hash output using our custom SHA256 implementation byte[] output = SHA256Custom.ComputeHash(input); return output;