{"id":18389307,"url":"https://github.com/rightpoint/rztouchid","last_synced_at":"2025-04-07T02:34:14.509Z","repository":{"id":25499124,"uuid":"28930380","full_name":"Rightpoint/RZTouchID","owner":"Rightpoint","description":"Basic TouchID implementation","archived":false,"fork":false,"pushed_at":"2015-11-20T17:00:23.000Z","size":2426,"stargazers_count":34,"open_issues_count":4,"forks_count":3,"subscribers_count":28,"default_branch":"master","last_synced_at":"2025-03-22T11:42:42.569Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rightpoint.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-01-07T19:35:52.000Z","updated_at":"2018-05-08T23:59:00.000Z","dependencies_parsed_at":"2022-08-01T05:18:01.586Z","dependency_job_id":null,"html_url":"https://github.com/Rightpoint/RZTouchID","commit_stats":null,"previous_names":["raizlabs/rztouchid"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2FRZTouchID","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2FRZTouchID/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2FRZTouchID/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2FRZTouchID/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rightpoint","download_url":"https://codeload.github.com/Rightpoint/RZTouchID/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247583264,"owners_count":20962003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T01:42:29.694Z","updated_at":"2025-04-07T02:34:09.493Z","avatar_url":"https://github.com/Rightpoint.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RZTouchID\n\n[![Version](https://img.shields.io/cocoapods/v/RZTouchID.svg?style=flat)](http://cocoadocs.org/docsets/RZTouchID)\n\n## Overview\nTouch ID is a fingerprint recognition feature available on the iPhone 5S, the iPhone 6/6+, and newest iPad models. It allows a user to unlock a device or make a payment using a fingerprint for authentication. Because Touch ID is primarily an authentication mechanism, it is also great for verifying user identity in lieu of a username and password combination in your application. Fingerprints are stored in the device's [Secure Enclave](http://support.apple.com/en-us/HT5949), so Touch ID allows users to fly through the login screen while still maintaining a high level of security.\n\n![RZTouchID in action](https://github.com/Raizlabs/RZTouchID/blob/master/rztouchid.gif \"RZTouchID Demo Project\")\n\n## Installation\nInstall using [CocoaPods](http://cocoapods.org) (recommended) by adding the following line to your Podfile:\n\n`pod \"RZTouchID\"`\n\n## Demo Project\nAn example project is available in the Example directory. You can quickly check it out with\n\n`pod try RZTouchID`\n\nOr download the zip from github and run it manually.\n\n## Usage\nCheck that Touch ID is available on the device and that there are currently registered fingerprints:\n\n`+ (BOOL)touchIDAvailable;`\n\nCreate a new Touch ID service with a unique keychain prefix:\n\n`- (instancetype)initWithKeychainServicePrefix:(NSString *)servicePrefix;`\n\nAdd a password to the keychain:\n``` obj-c\n// Store a password in the keychain for this TouchID service with an identifier. \n// The identifier can be any string used to identify the password, \n// but might commonly be a username, email, etc.\n- (void)addPassword:(NSString *)password \n     withIdentifier:(NSString *)identifier \n         completion:(RZTouchIDCompletion)completion;\n```\n\nRetrieve a password using Touch ID:\n``` obj-c \n// Presents the Touch ID authentication prompt and upon successful authentication\n// queries the keychain for the password with the given identifier. \n// If a password exists for this Touch ID service with the identifier,\n// it is returned in the completion block.\n- (void)retrievePasswordWithIdentifier:(NSString *)identifier\n                            withPrompt:(NSString *)prompt\n                            completion:(RZTouchIDCompletion)completion;\n```\n\nDelete a password from the keychain:\n``` obj-c\n// Deletes the password that was previously added to the Touch ID service.\n// A failed delete typically means there was no password stored for the service.\n- (void)deletePasswordWithIdentifier:(NSString *)identifier\n                          completion:(RZTouchIDCompletion)completion;\n```\n\n## Author\nAdam Howitt, adam.howitt@raizlabs.com, [@earnshavian](https://twitter.com/earnshavian)\n\n## License\nRZTouchID is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frightpoint%2Frztouchid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frightpoint%2Frztouchid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frightpoint%2Frztouchid/lists"}