using System; using System.Collections.Generic; using System.Text; namespace Esiur.Security.Cryptography { public enum EncryptionMode { None, EncryptWithSessionKey, EncryptWithSessionKeyAndAddress, } }