Warning
这是一个早期版本,可能会有较大的 API 变动。
为 Koishi 提供了一次性密码服务。
OTP 服务支持以下算法:
更多算法欢迎提交 PR。
插件市场搜索 otp
并安装。
otp [name]
: 列出用户保存的某个或所有密码。otp.qrcode <image>
: 通过二维码添加(需要 qrcode 服务)。otp.add <name> <token>
: 添加或覆盖认证账号。otp.rm <name>
: 移除令牌。
Note
最大步长在 TOTP 算法中表示每隔多少秒更新一次密码,HOTP 算法中表示每隔多少次更新一次密码。
- qrcode (
boolean
): 是否在添加令牌时显示二维码,默认值:true
。 - tokenizer (
random
、uuid
、timestamp
): 公共令牌生成方式,默认值:uuid
。 - maxStep (
number
): 最大步长,默认值:30
。 - maxThreshold (
number
): 最大重试阈值,默认值:5
。
npm i koishi-plugin-otp -D
# or yarn
yarn add koishi-plugin-otp -D
可通过 ctx.otp
访问。
method
: 认证算法,支持totp
和hotp
。options
: 认证配置项,支持以下属性:secret
: 共享密钥。algorithm
: 哈希算法,支持sha1
、sha256
和sha512
。digits
: 密码长度。period
: 密码更新周期。step
: 最大步长。
生成密码。
tokenizer
: 密钥生成器,支持random
、uuid
和timestamp
。salt
: 密钥生成器的盐。
创建共享密钥。
Warning
浏览器 Crypto API 有一定的安全性限制,请确保浏览器支持与符合安全上下文。
插件支持在 WebUI 中使用,并且得益于浏览器的 Crypto API,不需要额外导入 HMAC 算法:
import { useOTP } from 'koishi-plugin-otp/dist'
const otp = useOTP('totp', {
secret: 'your secret',
algorithm: 'sha1',
digits: 6,
period: 30,
step: 1
});
This project is licensed under the MIT license.