Skip to content

Commit

Permalink
ahash docs
Browse files Browse the repository at this point in the history
  • Loading branch information
2A5F committed Dec 29, 2023
1 parent 810a060 commit 0345485
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions BetterCollections/Cryptography/AHasher/AHasher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ namespace BetterCollections.Cryptography;
// reference https://github.com/tkaitchuck/aHash/tree/master

/// <summary>
/// A hasher that ensures even distribution of each bit
/// <para>If possible use Aes SIMD acceleration (.net7+)</para>
/// A hasher that ensures even distribution of each bit, alternatives to <see cref="System.HashCode"/>
/// <para>If possible use VAes SIMD acceleration</para>
/// <para>This type is .net8+ only, JIT optimization capabilities lower than net8 are insufficient</para>
/// <para>Algorithm from <a href="https://github.com/tkaitchuck/aHash/tree/master">aHash</a></para>
/// </summary>
public struct AHasher : IHasher
{
Expand Down

0 comments on commit 0345485

Please sign in to comment.