Esempio n. 1
0
 /// <summary>
 /// Returns the hexadecimal representation of the bitstring in this sponge state.
 /// </summary>
 /// <param name="spacing">Whether a whitespace should be inserted between each byte.</param>
 /// <param name="uppercase">Whether hexadecimal numbers should be printed uppercase.</param>
 /// <returns>The hexadecimal representation of the bitstring in this sponge state.</returns>
 public string ToHexString(bool spacing = true, bool uppercase = true)
 {
     return(_bitstring.ToHexString(spacing, uppercase));
 }