17 lines
373 B
C#
17 lines
373 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; }
|
|
|
|
public void Init();
|
|
}
|
|
} |