1. 首页
  2. 数据库
  3. 其它
  4. jwtool:编码和解码JSON Web令牌 源码

jwtool:编码和解码JSON Web令牌 源码

上传者: 2021-02-23 08:40:17上传 ZIP文件 10.54KB 热度 19次
jwtool 这是一个用于将JSON Web令牌与普通JSON相互转换的小工具。 $ cat test/example.jwt eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... $ jwtool decode test/example.jwt { "iat": 1516239022, "name": "John Doe", "sub": "1234567890" } $ jwtool encode test/example.json eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9... 无需任何签名验证/验证即可完成解码
用户评论