8 lines
203 B
C#
8 lines
203 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
|
|
namespace DigitalData.Core.Abstractions.Security.Key;
|
|
|
|
public interface IAsymmetricTokenValidator : IAsymmetricPublicKey
|
|
{
|
|
SecurityKey SecurityKey { get; }
|
|
} |