jwtool:编码和解码JSON Web令牌 源码
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... 无需任何签名验证/验证即可完成解码
用户评论