Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198

Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198

Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
BiometricKit.framework - iPhone Development Wiki

BiometricKit.framework

From iPhone Development Wiki
Revision as of 13:19, 4 January 2014 by Jdoe (talk | contribs) (First time editor, be gentle)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
BiometricKit.framework
Private Framework
Availabile 7.0 – present
Class Prefix BiometricKit
Headers [headers.cynder.me]


BiometricKit is the framework relating to the TouchID debuted on the iPhone 5s. The TouchID has an internal codename Mesa. It is a private framework compiled only for arm64. You can also Google "Biokit.h", and from the Gist you can find the headers for the BiometricKit.framework. (You can also dump them yourselves, it is shipped with the iPhoneOS 7.0 SDK on Xcode and of course on an iPhone 5s.)

Note that if you decide to use the BiometricKit class and the BiometricKitDelegate in your own app, the app needs the entitlements of com.apple.private.biometrickit.allow and com.apple.private.bmk.allow.

Classes

BiometricKitIdentity

BiometricKitIdentity represents the enrolled fingerprints on the device. Properties for the user-defined name and UUID are available. You can get an array of all identities with [[BiometricKit manager] identities:nil].

BiometricKitMatchInfo

BiometricKitMatchInfo contains presumably the actual fingerprint digital representation with up to 15 "topology nodes", returned from BiometricKitDelegate's - (void)matchResult:(BiometricKitIdentity *)result withDetails:(BiometricKitMatchInfo *)details. Both parameters would be nil if no match is found.

Uses

Getting scan results

- (void)biometricEventMonitor:(SBUIBiometricEventMonitor *) handleBiometricEvent:(unsigned) from SBLockScreenManager would be invoked always after the screen is on and a fingerprint is registered. One exception is when the user enters the TouchID settings under Preferences.app, where the app took control of all the callbacks, and we have to lock and unlock the screen again in order to receive messages from the aforementioned callback again.

This issue happens if you hook up to the BiometricKitXPCClient's - (void)matchResult:(BiometricKitIdentity *)result withDictionary:(NSDictionary *)dictionary; or if you go the good old delegate way with [BiometricKit manager]. I'm still trying to figure out how to revive that, if you found any way around this please do share with everyone.