refactor(AsymCryptService): Indexer und IEnumerable-Implementierung zur Vereinfachung entfernt

This commit is contained in:
Developer 02
2024-12-21 10:10:50 +01:00
parent 0dd897625a
commit a3931414e3
2 changed files with 6 additions and 37 deletions

View File

@@ -1,13 +1,11 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymCryptService : IRSAFactory, IEnumerable<IRSADecryptor>
public interface IAsymCryptService : IRSAFactory
{
IEnumerable<IRSADecryptor> Decryptors { get; }
IRSADecryptor Vault { get; }
IRSADecryptor this[string key] { get; }
IEnumerable<IRSAEncryptor> Encryptors { get; }
}
}