refactor(IAsymCryptService): Indexer entfernt und Decryptors und Encryptors getter Methoden hinzugefügt.

This commit is contained in:
Developer 02 2024-12-05 15:47:46 +01:00
parent 6f520732dd
commit b3568216a0

View File

@ -1,9 +1,9 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymCryptService<TParams> : IRSAFactory<TParams>
{
IRSADecryptor this[string key] { get; }
{
public IEnumerable<IRSADecryptor> Decryptors { get; }
bool TryGetRSADecryptor(string key, out IRSADecryptor? decryptor);
public IEnumerable<IRSAEncryptor> Encryptors { get; }
}
}