文件名称:jwtool:编码和解码JSON Web令牌
文件大小:11KB
文件格式:ZIP
更新时间:2024-03-05 08:57:42
Rust
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... 无需任何签名验证/验证即可完成解码。 不显示标题。 安装 您可以通过运行在本地安装jwtool $ cargo install --git https://github.com/vivienm/jwtool.git 自动补全 要在B
【文件预览】:
jwtool-master
----build.rs(417B)
----Cargo.lock(14KB)
----.github()
--------workflows()
----test()
--------example.json(69B)
--------example.jwt(155B)
----src()
--------app.rs(1KB)
--------error.rs(263B)
--------main.rs(162B)
--------cli.rs(846B)
--------jwt.rs(2KB)
----Cargo.toml(428B)
----.gitignore(8B)
----README.md(684B)
----LICENSE.txt(1KB)