mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-09-17 19:15:33 +08:00
@@ -13,8 +13,7 @@ public sealed record CaptchaOptions : OptionAbstraction
|
||||
{
|
||||
var rtn = new char[32];
|
||||
for (var i = 0; i != 32; i++) {
|
||||
rtn[i] = Chars.FLGL_VISIBLE_ASCIIS[
|
||||
(int)(Math.Abs(Math.Sin(_seed * (i + 1))) * Chars.FLGL_VISIBLE_ASCIIS.Length)];
|
||||
rtn[i] = Chars.FLGL_VISIBLE_ASCIIS[(int)(Math.Abs(Math.Sin(_seed * (i + 1))) * Chars.FLGL_VISIBLE_ASCIIS.Length)];
|
||||
}
|
||||
|
||||
SecretKey = new string(rtn);
|
||||
|
Reference in New Issue
Block a user