mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-02 15:56:21 +00:00
Avoid modulo bias for PIN generation
This commit is contained in:
parent
46b9f84a31
commit
e0bb48320f
@ -229,8 +229,8 @@
|
||||
|
||||
- (NSString*) generatePIN {
|
||||
NSString* PIN = [NSString stringWithFormat:@"%d%d%d%d",
|
||||
arc4random() % 10, arc4random() % 10,
|
||||
arc4random() % 10, arc4random() % 10];
|
||||
arc4random_uniform(10), arc4random_uniform(10),
|
||||
arc4random_uniform(10), arc4random_uniform(10)];
|
||||
return PIN;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user