11 lines
318 B
C#
11 lines
318 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface ICryptoFactory : IAsymmetricKeyFactory
|
|
{
|
|
IEnumerable<IAsymmetricDecryptor> Decryptors { get; }
|
|
|
|
IAsymmetricDecryptor VaultDecryptor { get; }
|
|
|
|
IEnumerable<IAsymmetricTokenDescriptor> TokenDescriptors { get; }
|
|
}
|
|
} |