Skip to content

Commit c88c2bb

Browse files
authored
Fix unknown function after renaming FixedTimeCompare to FixedTimeEquals
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 65711cc commit c88c2bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Core/Utilities/HashComparer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ public static bool FixedTimeEquals(byte[] left, byte[] right)
9494
/// <exception cref="System.ArgumentNullException">Thrown if either <paramref name="left"/> or <paramref name="right"/> is <see langword="null"/>.</exception>
9595
public static bool FixedTimeEquals(ImmutableArray<byte> left, ImmutableArray<byte> right)
9696
{
97-
return FixedTimeCompare(left.ToArray(), right.ToArray());
97+
return FixedTimeEquals(left.ToArray(), right.ToArray());
9898
}
9999
}
100100
}
101101

102102

103+

0 commit comments

Comments
 (0)