11 lines
269 B
C#

namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymCryptHandler : IRSAFactory
{
IEnumerable<IRSADecryptor> Decryptors { get; }
IRSADecryptor Vault { get; }
IEnumerable<IRSAEncryptor> Encryptors { get; }
}
}