mfgames-cil/src/MfGames.Cryptography/ByteStringFormat.cs

20 lines
413 B
C#

namespace MfGames.Crypto;
public enum ByteStringFormat
{
/// <summary>
/// Indicates that the format should be lowercase hex characters.
/// </summary>
LowercaseHex,
/// <summary>
/// Indicates that the format should be uppercase hex characters.
/// </summary>
UppercaseHex,
/// <summary>
/// Indicates that the format should be Base64.
/// </summary>
Base64,
}