10 lines
235 B
C#
10 lines
235 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymmetricKey : IUniqueSecurityContext
|
|
{
|
|
string Content { get; }
|
|
}
|
|
} |