From 810796f0c1dd652e57f1a27d43e4fcba492a765a Mon Sep 17 00:00:00 2001 From: EonaCat Date: Sun, 6 Jul 2025 08:53:03 +0200 Subject: [PATCH] Update RandomNumberGeneratorCustom.cs --- EonaCat.Crypto/Helpers/RandomNumberGeneratorCustom.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;