13 lines
346 B
C#
13 lines
346 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptService : IRSAFactory, IEnumerable<IRSADecryptor>
|
|
{
|
|
IEnumerable<IRSADecryptor> Decryptors { get; }
|
|
|
|
IRSADecryptor Vault { get; }
|
|
|
|
IRSADecryptor this[string key] { get; }
|
|
|
|
IEnumerable<IRSAEncryptor> Encryptors { get; }
|
|
}
|
|
} |