18 lines
470 B
C#
18 lines
470 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IRSACryptographer : IUniqueSecurityContext
|
|
{
|
|
public string Pem { get; init; }
|
|
|
|
public RSAEncryptionPadding Padding { get; init; }
|
|
|
|
public new string Issuer { get; init; }
|
|
|
|
public new string Audience { get; init; }
|
|
|
|
public RsaSecurityKey RsaSecurityKey { get; }
|
|
}
|
|
} |