Developer 02 489ca67203 Refactor(RSACryptographer): Entfernte Pem initter Methode.
- PrivateKeyPem initter Methode zu RSADecryptor hinzugefügt.
 - PublicKeyPem getter und initter Methoden zu RSAEncryptor hinzugefügt.
2024-11-18 10:33:38 +01:00

13 lines
290 B
C#

using System.Security.Cryptography;
namespace DigitalData.Core.Security
{
public class RSACryptographer
{
public required RSAEncryptionPadding Padding { get; init; }
protected readonly RSA _rsa = RSA.Create();
internal RSACryptographer() { }
}
}