21 lines
460 B
C#
21 lines
460 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? Directory { get; set; }
|
|
|
|
public string? FileName { get; set; }
|
|
|
|
public string Issuer { get; init; }
|
|
|
|
public string Audience { get; init; }
|
|
|
|
public void Init();
|
|
}
|
|
} |