14 lines
356 B
C#
14 lines
356 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymmetricKey : IUniqueSecurityContext
|
|
{
|
|
public string Content { get; init; }
|
|
|
|
public new string Issuer { get; init; }
|
|
|
|
public new string Audience { get; init; }
|
|
}
|
|
} |