Files
DigitalData.Core/DigitalData.Core.Abstractions/Security/ICryptograph.cs

11 lines
304 B
C#

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