diff --git a/NewPasswordGenerator.m b/NewPasswordGenerator.m index efed591..e8cc4c3 100644 --- a/NewPasswordGenerator.m +++ b/NewPasswordGenerator.m @@ -59,9 +59,9 @@ for (size_t i = 0; i < _length; i++) _output[i] = - "0123456789" - "abcdefghijklmnopqrstuvwxyz" - "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - ".!"[_output[i] & 0x3F]; + "123456789" + "abcdefghijkmnopqrstuvwxyz" + "ABCDEFGHJKLMNPQRSTUVWXYZ" + "#$%-=?"[_output[i] & 0x3F]; } @end diff --git a/iOS/ShowDetailsController.m b/iOS/ShowDetailsController.m index 6e78143..83c5152 100644 --- a/iOS/ShowDetailsController.m +++ b/iOS/ShowDetailsController.m @@ -128,7 +128,8 @@ clearNSMutableString(NSMutableString *string) [UIAlertAction actionWithTitle: @"OK" style: UIAlertActionStyleDefault handler: ^ (UIAlertAction *action) { - [self.navigationController popViewControllerAnimated: YES]; + [self.navigationController + popViewControllerAnimated: YES]; }]]; [self presentViewController: alert