- Die Pem-Eigenschaft wurde aktualisiert, um eine Validierung hinzuzufügen, die eine InvalidOperationException auslöst, falls sie vor der Initialisierung aufgerufen wird. - Nicht verwendeten Import System.Text.Json.Serialization entfernt. - Fehlermeldungen wurden erweitert, um Issuer und Audience für eine bessere Debugging-Kontextbereitschaft einzuschließen.
45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
using DigitalData.Core.Abstractions.Security;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace DigitalData.Core.Security.Cryptographer
|
|
{
|
|
public class RSACryptographer : IRSACryptographer
|
|
{
|
|
private string? _pem;
|
|
|
|
public string Pem
|
|
{
|
|
get => _pem
|
|
?? throw new InvalidOperationException($"Pem is not initialized. Please ensure that the PEM is set or properly loaded from the file. Issuer: {Issuer}, Audience: {Audience}.");
|
|
init => _pem = value;
|
|
}
|
|
|
|
public string? PemPath => FileName is null ? null : Path.Combine(Directory, FileName);
|
|
|
|
public string Directory { get; set; } = string.Empty;
|
|
|
|
public string? FileName { get; set; }
|
|
|
|
public RSAEncryptionPadding Padding { get; init; } = RSAEncryptionPadding.OaepSHA256;
|
|
|
|
protected virtual RSA RSA { get; } = RSA.Create();
|
|
|
|
public string Issuer { get; init; } = string.Empty;
|
|
|
|
public string Audience { get; init; } = string.Empty;
|
|
|
|
internal RSACryptographer() { }
|
|
|
|
// TODO: make file read asynchronous, consider multiple routing
|
|
public virtual void Init()
|
|
{
|
|
if(_pem is null)
|
|
{
|
|
if (File.Exists(PemPath))
|
|
_pem = File.ReadAllText(PemPath);
|
|
else
|
|
throw new FileNotFoundException($"Pem is not assigned. Furthermore Pem file is not found in {PemPath}. Issuer is {Issuer} and audience {Audience}.");
|
|
}
|
|
}
|
|
}
|
|
} |