forked from xiongyuxing/tiku-backend.net
10 lines
222 B
C#
10 lines
222 B
C#
using Microsoft.IdentityModel.Tokens;
|
|
|
|
namespace Tiku.Application.Security;
|
|
|
|
public interface IJwtKeyRing
|
|
{
|
|
SigningCredentials SigningCredentials { get; }
|
|
IReadOnlyCollection<SecurityKey> ValidationKeys { get; }
|
|
}
|