11 lines
262 B
C#
11 lines
262 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymmetricPrivateKey : IAsymmetricKey
|
|
{
|
|
public bool IsEncrypted { get; init; }
|
|
|
|
IAsymmetricPublicKey PublicKey { get; }
|
|
}
|
|
} |