Skip to content

mbotos/ObjectiveKeychain

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ObjectiveKeychain is an Objective-C wrapper around Apple's Keychain Services for iOS. It allows you to easily save and retrieve items from the system's keychain.

Status

Generic and Internet passwords are mostly functional. Better support for finding existing items needs to be added, and key/certificate support still needs to be added.

Usage

It's pretty simple to use:

InternetPassword *password = [[InternetPassword alloc] initWithLabel:@"My Internet Password"
                                                         accessGroup:nil];
password.account = @"my_username";
password.password = @"MySecr3tP@ssword";
password.server = @"www.apple.com";
password.protocol = kNetworkProtocolFTP;
[password writeToKeychain];

About

Objective-C wrapper for the iOS Keychain

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 56.9%
  • C 43.1%