File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
HashifyNet/Algorithms/BuzHash Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
4343 new int HashSizeInBits { get ; }
4444
4545 /// <summary>
46- /// Gets a list of <c>256</c> (preferably random and distinct) <see cref="ulong "/> values.
46+ /// Gets a list of <c>256</c> (preferably random and distinct) <see cref="long "/> values.
4747 /// </summary>
4848 /// <value>
49- /// List of 256 <see cref="ulong "/> values.
49+ /// List of 256 <see cref="long "/> values.
5050 /// </value>
51- IReadOnlyList < ulong > Rtab { get ; }
51+ IReadOnlyList < long > Rtab { get ; }
5252
5353 /// <summary>
5454 /// Gets the seed value.
@@ -57,9 +57,9 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
5757 /// The seed value.
5858 /// </value>
5959 /// <remarks>
60- /// Only the bottom <see cref="IHashConfigBase.HashSizeInBits"/> bits shoudl be used for a given configuration.
60+ /// Only the bottom <see cref="IHashConfigBase.HashSizeInBits"/> bits should be used for a given configuration.
6161 /// </remarks>
62- ulong Seed { get ; }
62+ long Seed { get ; }
6363
6464 /// <summary>
6565 /// Gets the shift direction.
@@ -69,4 +69,4 @@ public interface IBuzHashConfig : IHashConfig<IBuzHashConfig>
6969 /// </value>
7070 CircularShiftDirection ShiftDirection { get ; }
7171 }
72- }
72+ }
You can’t perform that action at this time.
0 commit comments