/// <summary>
 /// Gets the hash given a value and a seed.
 /// </summary>
 /// <param name="value">The value to hash.</param>
 /// <param name="seed">The seed.</param>
 /// <returns>The hash.</returns>
 public static UInt192 GetHash(UInt192 value, UInt192 seed)
 {
     return(DistinctHash.GetHash(UInt192.ToByteArray(value), seed));
 }
Beispiel #2
0
 /// <summary>
 /// Gets the hash given a value and a seed.
 /// </summary>
 /// <param name="value">The value to hash.</param>
 /// <param name="seed">The seed.</param>
 /// <returns>The hash.</returns>
 public UInt192 GetHash(UInt192 value, UInt192 seed)
 {
     return(this.GetHash(UInt192.ToByteArray(value), seed));
 }