mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-06-17 06:01:13 +00:00
Avoid modulo bias for PIN generation
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user