11 lines
304 B
C#

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