码迷,mamicode.com
首页 > 编程语言 > 详细

Java中 Jwt

时间:2020-04-21 15:08:15      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:expires   subject   image   jwt   ring   info   int   code   boolean   

java

jar包
技术图片

封装工具类

public class jwtTool {


    public static final String secretKey = "askjdksadjkasdakjshdjkasdkAakjshdjasdjs";


    public String getJWTWithHMAC256(String subject, String secretKey){
        //指定JWT所使?用的签名算法
        Algorithm algorithm = Algorithm.HMAC256(secretKey);
        String token = JWT.create()//创建token
                .withIssuer("com.kkb")//指定签发?人
                .withSubject(subject)//指定主体数据
                .withExpiresAt(new Date(new Date().getTime()+(1000*20)))
                .sign(algorithm);//最终?生成 token
        return token;
    }


    public boolean verifyTokenWithHMAC256(String token,String secretKey){
        try{
            Algorithm algorithm = Algorithm.HMAC256(secretKey);
            JWTVerifier verifier = JWT.require(algorithm)
                    .withIssuer("com.kkb")
                    .build();
            verifier.verify(token);
            return true;
        }catch (JWTVerificationException e){
            e.printStackTrace();
            return false;
        }
    }


}
DecodedJWT decode = JWT.decode(token);
System.out.println(decode.getSignature());
System.out.println(decode.getSubject());
System.out.println(decode.getExpiresAt());

Java中 Jwt

标签:expires   subject   image   jwt   ring   info   int   code   boolean   

原文地址:https://www.cnblogs.com/tangshuo/p/12744277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!