Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

migbot
Copy link

@migbot migbot commented Jun 18, 2021

Similar to how getAllGenericPasswordServices returns a list of services, getAllInternetPasswordServers returns the list of kSecAttrServer values used with internet credentials on iOS.

for (id entry in result) {
NSMutableData *serverData = [entry objectForKey:(__bridge NSString *)kSecAttrServer];
if (serverData != NULL) {
NSString *server = [[NSString alloc] initWithData:serverData encoding:NSUTF8StringEncoding];
Copy link

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

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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];
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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];
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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];
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
[servers addObject:server];
[servers addObject:serverData];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants