- Optionen aktualisiert, um Vault-Parameter hinzufügen zu können. Wenn es null ist, ist Vault der erste Entschlüsseler. - Standard-Entschlüssler entfernt.
15 lines
441 B
C#
15 lines
441 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; }
|
|
}
|
|
|
|
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }
|
|
} |