refactor(Abstractions.Security): Unnötige public Schlüsselwörter in Schnittstellen entfernt.

This commit is contained in:
Developer 02
2025-01-09 22:27:33 +01:00
parent 21e164ceb7
commit 5981ba7a8d
6 changed files with 14 additions and 14 deletions

View File

@@ -18,6 +18,6 @@ namespace DigitalData.Core.Abstractions.Security
int? keySizeInBits = null,
string? password = null);
public IAsymmetricDecryptor CreateDecryptor(string pem, string? issuer = null, string? audience = null, bool encrypt = false, RSAEncryptionPadding? padding = null);
IAsymmetricDecryptor CreateDecryptor(string pem, string? issuer = null, string? audience = null, bool encrypt = false, RSAEncryptionPadding? padding = null);
}
}