11 lines
296 B
C#
11 lines
296 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptHandler : IRSAFactory
|
|
{
|
|
IEnumerable<IAsymmetricPrivateKey> PrivateKeys { get; }
|
|
|
|
IAsymmetricPrivateKey VaultPrivateKey { get; }
|
|
|
|
IEnumerable<IRSAEncryptor> Encryptors { get; }
|
|
}
|
|
} |