totp:RFC6238 TOTP在纯PostgreSQL plpgsql中的实现 源码
托普 纯PostgreSQL plpgsql中的TOTP实现 此扩展提供了HMAC基于时间的一次性密码算法(TOTP),该方法在RFC 6238/4226中指定为纯plpgsql函数。 用法 生成 SELECT totp . generate ( ' mysecret ' ); -- you can also specify totp_interval, and totp_length SELECT totp . generate ( ' mysecret ' , 30 , 6 ); 在这种情况下,生成长度为6的TOTP代码 013438 验证 SELECT totp . verify ( ' mysecret ' , ' 765430 ' ); -- you can also specify totp_interval, and totp_length SELECT totp . ver
文件列表
totp-master.zip
(预估有个77文件)
totp-master
.travis.yml
984B
bin
install.sh
463B
skitch.json
60B
package.json
558B
extensions
@launchql
base32
revert
暂无评论