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