Developer 02 608d266d1c refactor(IAsymmetricKey): Umwandlung von RsaSecurityKey in SecurityKey zur besseren Abstraktion.
- RSAEncryptionPadding entfernen
 - Pem als Inhalt Content
2025-01-07 16:53:05 +01:00

16 lines
405 B
C#

using Microsoft.IdentityModel.Tokens;
using System.Security.Cryptography;
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymmetricKey : IUniqueSecurityContext
{
public string Content { get; init; }
public new string Issuer { get; init; }
public new string Audience { get; init; }
public SecurityKey SecurityKey { get; }
}
}