namespace DigitalData.Core.Abstractions.Security { public interface ICryptograph : IAsymmetricKeyFactory { IEnumerable PrivateKeys { get; } IAsymmetricPrivateKey VaultPrivateKey { get; } IEnumerable PublicKeys { get; } } }