11 lines
340 B
C#
11 lines
340 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptService : IRSAFactory
|
|
{
|
|
public IEnumerable<IRSADecryptor> Decryptors { get; }
|
|
|
|
public IEnumerable<IRSAEncryptor> Encryptors { get; }
|
|
}
|
|
|
|
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }
|
|
} |