refactor(IAsymmetricKey): Umwandlung von RsaSecurityKey in SecurityKey zur besseren Abstraktion.

- RSAEncryptionPadding entfernen
 - Pem als Inhalt Content
This commit is contained in:
Developer 02
2025-01-07 16:53:05 +01:00
parent 34e14fd2f5
commit 608d266d1c
5 changed files with 14 additions and 16 deletions

View File

@@ -5,14 +5,12 @@ namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymmetricKey : IUniqueSecurityContext
{
public string Pem { get; init; }
public RSAEncryptionPadding Padding { get; init; }
public string Content { get; init; }
public new string Issuer { get; init; }
public new string Audience { get; init; }
public RsaSecurityKey RsaSecurityKey { get; }
public SecurityKey SecurityKey { get; }
}
}