diff --git a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs index 9e95d14..81088ee 100644 --- a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs +++ b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs @@ -1,9 +1,9 @@ namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptService : IRSAFactory - { - IRSADecryptor this[string key] { get; } + { + public IEnumerable Decryptors { get; } - bool TryGetRSADecryptor(string key, out IRSADecryptor? decryptor); + public IEnumerable Encryptors { get; } } } \ No newline at end of file