feat(ISecurityIdentifier): Implementiert in IRSACryptographer und TokenDescription

This commit is contained in:
Developer 02
2024-12-20 14:35:10 +01:00
parent 9953bbd2ef
commit ec126be2aa
2 changed files with 8 additions and 7 deletions

View File

@@ -2,14 +2,14 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IRSACryptographer
public interface IRSACryptographer : ISecurityIdentifier
{
public string Pem { get; init; }
public RSAEncryptionPadding Padding { get; init; }
public string Issuer { get; init; }
public new string Issuer { get; init; }
public string Audience { get; init; }
public new string Audience { get; init; }
}
}