Skip to content

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];

@DorianMazur DorianMazur self-assigned this Feb 13, 2025
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.

3 participants