15 lines
338 B
C#
15 lines
338 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IRSACryptographer
|
|
{
|
|
public string Pem { get; init; }
|
|
|
|
public RSAEncryptionPadding Padding { get; init; }
|
|
|
|
public string? Issuer { get; init; }
|
|
|
|
public string? Audience { get; init; }
|
|
}
|
|
} |