Skip to content

Commit

Permalink
Don't use Everest.ChecksumHasher
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Sep 3, 2024
1 parent bb5f207 commit 661fa10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CelesteTAS-EverestInterop/Utils/HashHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ namespace TAS.Utils;

internal static class HashHelper {
public static string ComputeHash(string text) {
return Everest.ChecksumHasher.ComputeHash(Encoding.UTF8.GetBytes(text)).ToHexadecimalString();
return XXHash64.Create().ComputeHash(Encoding.UTF8.GetBytes(text)).ToHexadecimalString();
}
}
}

0 comments on commit 661fa10

Please sign in to comment.