refactor(AsymCryptService): Verschlüsselungen entfernen, da sie von Entschlüsselungen erzeugt werden müssen.

This commit is contained in:
Developer 02
2024-12-13 15:38:50 +01:00
parent f267fe955b
commit d013d3edfa
3 changed files with 10 additions and 46 deletions

View File

@@ -3,8 +3,6 @@
public interface IAsymCryptService : IRSAFactory
{
public IEnumerable<IRSADecryptor> Decryptors { get; }
public IEnumerable<IRSAEncryptor> Encryptors { get; }
}
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }