We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a4e7c commit 81ed1cfCopy full SHA for 81ed1cf
Common/Utils/HashingUtils.cs
@@ -14,6 +14,6 @@ public static string HashSha256(string str)
14
{
15
Span<byte> tempSpan = stackalloc byte[32];
16
SHA256.HashData(Encoding.UTF8.GetBytes(str), tempSpan);
17
- return Convert.ToHexString(tempSpan);
+ return Convert.ToHexString(tempSpan).ToLowerInvariant();
18
}
19
0 commit comments