CryptoAlgorithm

SENx cryptographic algorithms (ciphers).

/// <summary>
/// SENx Cryptographic Algorithms
/// </summary>
public enum CryptoAlgorithm
{
	Aes128Cbc,
	Aes128Gcm,
	Aes192Cbc,
	Aes192Gcm,
	Aes256Cbc,
	Aes256Gcm
}