Update RandomNumberGeneratorCustom.cs

This commit is contained in:
2025-07-06 08:53:03 +02:00
parent 65ac111da0
commit 810796f0c1

View File

@@ -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;