使用HMAC256

时间:2019-07-08 15:25:29

标签: android

在我的应用中使用私钥和HMAC256算法创建JWT令牌

为此,我正在使用https://github.com/jwtk/jjwt#install-android,我没有使用任何示例或示例

令牌= Jwts.builder()                             .setHeader(headerMap)                             .setClaims(claimsMap)                             .setIssuer(发出者)                     .signWith(SignatureAlgorithm.HS256,                             Base64.decode(                                     //生成的签名密钥是                                     //的正确长度                                     // HS256算法。                                     secret_key,Base64.DEFAULT                             ))。compact();

0 个答案:

没有答案