-
-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds getAllInternetPasswordServers method for iOS #473
base: master
Are you sure you want to change the base?
Conversation
for (id entry in result) { | ||
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; | ||
if (serverData != NULL) { | ||
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line is not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding]; |
result = (__bridge NSArray*)(resultRef); | ||
if (result != NULL) { | ||
for (id entry in result) { | ||
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; | |
NSString *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; |
for (id entry in result) { | ||
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; | ||
if (serverData != NULL) { | ||
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding]; |
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer]; | ||
if (serverData != NULL) { | ||
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding]; | ||
[servers addObject:server]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[servers addObject:server]; | |
[servers addObject:serverData]; |
Similar to how
getAllGenericPasswordServices
returns a list of services,getAllInternetPasswordServers
returns the list ofkSecAttrServer
values used with internet credentials on iOS.