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