托普
纯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 );
在这种情况