namespace DigitalData.Core.Abstractions.Security { public interface ICryptograph : IAsymmetricKeyFactory { IEnumerable Decryptors { get; } IAsymmetricDecryptor VaultDecryptor { get; } } }