网络
一个小的totp c#库+带有谷歌身份验证器的GUI符合二维码生成。
快速开始
为 Secret GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ 生成实际代码。 秘密必须是 base32 编码的。 在此示例中,t1 设置为 30 秒,我们将得到一个 8 位长的代码。
string secret = " GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ " ;
Totp totp = new Totp ( secret , 30 , 8 );
string totpCode = totp . getCodeString ();
资源
使用的库和类
2021-12-17 14:01:59
31KB
C#
1