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