diff --git a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs index 7a31a44..9e71c3a 100644 --- a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs +++ b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs @@ -1,10 +1,14 @@ namespace DigitalData.Core.Abstractions.Security { - public interface IAsymCryptService : IRSAFactory + public interface IAsymCryptService : IRSAFactory, IEnumerable { - public IEnumerable Decryptors { get; } + IEnumerable Decryptors { get; } - public IRSADecryptor this[string key] { get; } + IRSADecryptor Default { get; } + + IRSADecryptor this[string key] { get; } + + IEnumerable Encryptors { get; } } public interface IAsymCryptService : IAsymCryptService, IRSAFactory { }