diff --git a/src/Particular.LicensingComponent.Report/Utility/OneWayHasher.cs b/src/Particular.LicensingComponent.Report/Utility/OneWayHasher.cs index 6e2fe03..fb99320 100644 --- a/src/Particular.LicensingComponent.Report/Utility/OneWayHasher.cs +++ b/src/Particular.LicensingComponent.Report/Utility/OneWayHasher.cs @@ -9,8 +9,8 @@ public static class OneWayHasher { /// - /// Calculates the SHA3-256 hash of the specified input string and returns the result as a hexadecimal string. + /// Calculates the SHA256 hash of the specified input string and returns the result as a hexadecimal string. /// public static string CalculateOneWayHash(string input) - => BitConverter.ToString(SHA3_256.HashData(Encoding.UTF8.GetBytes(input))).Replace("-", ""); -} \ No newline at end of file + => BitConverter.ToString(SHA256.HashData(Encoding.UTF8.GetBytes(input))).Replace("-", ""); +}