1 Star 0 Fork 0

廖家俊/web期中

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
JWTService.cs 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
廖家俊 提交于 2024-05-17 20:39 . 添加项目文件。
using LJJ_Shop.Models;
using Microsoft.Extensions.Options;
using Microsoft.IdentityModel.Tokens;
using System;
using System.Collections.Generic;
using System.IdentityModel.Tokens.Jwt;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace LJJ_Shop.Services
{
/// <summary>
///
/// </summary>
public class JWTService : IJWTService
{
private readonly JWTConfig _jwtConfig;
public JWTService(IOptions<JWTConfig> jwtConfig)
{
this._jwtConfig = jwtConfig.Value;
}
public string CreateToken(int userId, string name)
{
//把有需要的信息写到Token
var claims = new[] {
new Claim(ClaimTypes.NameIdentifier, userId.ToString()),
new Claim(ClaimTypes.Name, name),
};
//创建密钥
var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_jwtConfig.Secret));
//密钥加密
var credentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);
//token配置
var jwtToken = new JwtSecurityToken(_jwtConfig.Issuer,
_jwtConfig.Audience,
claims,
expires: DateTime.Now.AddMinutes(_jwtConfig.AccessExpiration),
signingCredentials: credentials);
//获取token
var token = new JwtSecurityTokenHandler().WriteToken(jwtToken);
return token;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liao-jiajun65/web-mid-term.git
git@gitee.com:liao-jiajun65/web-mid-term.git
liao-jiajun65
web-mid-term
web期中
master

搜索帮助