refactor(RSADecryptor): Umbenennung der Eigenschaft Encrypt in IsEncrypted

This commit is contained in:
Developer 02
2024-12-13 16:02:25 +01:00
parent 53e6f37a09
commit fe2ee78d14
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
{
public interface IRSADecryptor : IRSACryptographer
{
public bool Encrypt { get; init; }
public bool IsEncrypted { get; init; }
IRSAEncryptor Encryptor { get; }