托普 纯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