/// <summary>
 /// Initializes a new instance of the <see cref="Uniqueness"/> class.
 /// </summary>
 /// <param name="hashBits">The hashBits<see cref="HashBits"/>.</param>
 public Uniqueness(HashBits hashBits)
 {
     if (hashBits == HashBits.bit32)
     {
         unique = Unique.Bit32;
     }
     else
     {
         unique = Unique.Bit64;
     }
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Uniqueness"/> class.
 /// </summary>
 public Uniqueness()
 {
     unique = Unique.Bit64;
 }