79688478

Date: 2025-07-03 08:06:52
Score: 0.5
Natty:
Report link

.NET 9

internal static string Sha1(string path)
{
    using var stream = File.OpenRead(path);
    using var sha1 = System.Security.Cryptography.SHA1.Create();
    return Convert.ToHexStringLower(sha1.ComputeHash(stream));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user2025261