void | enrollDeviceAuth(completion: @escaping (Bool, Any?, String?) -> Void) | Registers device's biometric (fingerprint, face, pin, password, pattern lock) |
String | getLiveIdImageBase64String() -> String? | Returns registered LiveID base64 image |
void | initialize() | Initializes BIDAuthProvider |
Bool | isAuthAssetEnrolled(assetType: AuthAssetType) | Checks and indicates if the given type of authentication asset is registered |
Bool | isSDKUnLocked() | Checks and indicates if the SDK is locked or not |
void | lockSDK() | Locks the SDK |
void | unenrollDeviceAuth(completion: @escaping (Bool, Any?, String?) -> Void) | Removes the registered device's biometric (fingerprint, face, pin, password, pattern lock) |
void | unlockSDK() | Unlocks the SDK |
void | verifyDeviceAuth(completion: @escaping (Bool, BiometricError?, String?) -> Void) | Verifies the application using device's biometric authentication. Provides an option to fallback to Pin authentication in case biometric verification is failed |
void | verifyFace(image: UIImage, keyPair: APIKeyPair, tenant: BIDTenant, did: String, completion: @escaping (_ status: Bool, _ error: ErrorResponse?) -> Void) | Compares the given face with the one stored in vault and returns the result. This method is generally used for document enrollment purpose |
Bool | verifyPin(pin: verifyPin) | Checks and indicates pin verification result. The given pin is verified with the one stored in vault |