using System.Security.Claims; namespace BuaaLocationServer.Middlewares.Jwts { /// /// JWT 服务器接口。 /// public interface IJwtService { /// /// 创建一个 JWT。 /// /// /// string Create(ClaimsIdentity identity); /// /// 验证 JWT 是否有效。 /// /// /// /// bool Validate(string token, out ClaimsPrincipal principal); } }