diff --git a/Classes/GlobalStateExplorers/Keychain/FLEXKeychainViewController.m b/Classes/GlobalStateExplorers/Keychain/FLEXKeychainViewController.m index 745c33b9e0..af258953c7 100644 --- a/Classes/GlobalStateExplorers/Keychain/FLEXKeychainViewController.m +++ b/Classes/GlobalStateExplorers/Keychain/FLEXKeychainViewController.m @@ -233,6 +233,7 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath make.message(@"Service: ").message(query.service); make.message(@"\nAccount: ").message(query.account); make.message(@"\nPassword: ").message(query.password); + make.message(@"\nPassword Data: ").message(query.passwordData.description); make.message(@"\nGroup: ").message(query.accessGroup); make.button(@"Copy Service").handler(^(NSArray *strings) { @@ -244,6 +245,9 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath make.button(@"Copy Password").handler(^(NSArray *strings) { [UIPasteboard.generalPasteboard flex_copy:query.password]; }); + make.button(@"Copy Password Data").handler(^(NSArray *strings) { + [UIPasteboard.generalPasteboard flex_copy:query.passwordData.debugDescription]; + }); make.button(@"Dismiss").cancelStyle(); } showFrom:self];