1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/common/oathtool.md

17 lines
428 B
Markdown
Raw Normal View History

2019-03-12 12:37:06 +08:00
# oathtool
> OATH 一次性密码工具。
> 更多信息:<https://www.nongnu.org/oath-toolkit/oathtool.1.html>.
2019-03-12 12:37:06 +08:00
- 生成 TOTP 令牌(行为类似于 Google Authenticator):
2019-03-12 12:37:06 +08:00
`oathtool --totp --base32 "{{密码}}"`
2019-03-12 12:37:06 +08:00
- 根据给定时间产生特定的 TOTP 令牌:
2019-03-12 12:37:06 +08:00
`oathtool --totp --now "{{2004-02-29 16:21:42}}" --base32 "{{密码}}"`
2019-03-12 12:37:06 +08:00
- 验证 TOTP 令牌:
2019-03-12 12:37:06 +08:00
`oathtool --totp --base32 "{{密码}}" "{{令牌}}"`