namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptHandler : IRSAFactory { IEnumerable Decryptors { get; } IRSADecryptor Vault { get; } IEnumerable Encryptors { get; } } }