refactor(IRSACryptographer): RsaSecurityKey-Eigenschaft hinzugefügt

This commit is contained in:
Developer 02 2025-01-06 11:29:19 +01:00
parent 389d64c25d
commit 0a3ce89c0d

View File

@ -1,4 +1,5 @@
using System.Security.Cryptography;
using Microsoft.IdentityModel.Tokens;
using System.Security.Cryptography;
namespace DigitalData.Core.Abstractions.Security
{
@ -11,5 +12,7 @@ namespace DigitalData.Core.Abstractions.Security
public new string Issuer { get; init; }
public new string Audience { get; init; }
public RsaSecurityKey RsaSecurityKey { get; }
}
}