Error Reporting
HYPR SDK for iOS
HYPR SDK for iOS has comprehensive error reporting throughout the framework. Errors generated at a particular layer will be bubbled up via a NSError-based "stack" of underlying errors in the NSError userInfo
dictionary. The root error may be easily accessed via the -rootError
category method on NSError, provided in HYPRError.h
.
Currently, the implementation of error handling abstracts a lot of the detail away from the top user and will return a localized description of Invalid Parameters, User Cancelled, or Failed to register user. All errors returned by HYPR SDK for iOS will be in the HYPRErrorDomain
, with specific codes described in HYPRError.h
. Underlying errors may be in whichever error domain is appropriate for the module generating them (NSURLErrorDomain
, Security Framework, etc.).
The userInfo
dictionary may contain additional keys, such as NSFailureReasonKey
, but this is not guaranteed for all errors. The mandatory keys for the userInfo
dictionary are:
NSLocalizedDescriptionKey
includes the general error cause; more detailed information could be found by looking at the error codeHYPRErrorUserActionKey
includes the string with recommended user action, which can be used to present it to the app user
Additional keys include the following:
NSUnderlyingError
property of the returned error object will contain the root cause of the top-level error
Error codes returned from calls to the HYPR User Agent include the following:
HYPRErrorCancelled
HYPRErrorRegistrationFailed
HYPRErrorAuthenticationFailed
HYPRErrorDeregisterFailed
HYPRErrorRemoteDeviceSetupRegistrationFailed
HYPRErrorRemoteDeviceCompleteRegistrationFailed
HYPRErrorInvalidParameters
HYPRErrorRemoteDeviceAuthenticationFailed
HYPRErrorUserAgentNoProfileRegistered
HYPRErrorUserAgentDeviceCredentialsNotFound
HYPRErrorUserAgentDeviceAuthenticateWithShoveFailed
Refer to the HYPR Error Codes Troubleshooting Table for more details.
iOS Errors
Below is a full list of all possible errors from HYPR SDK for iOS. The table is listed by error string and code, detailed cause, and display information in the SDK.
Additionally, HyprCore/HyprError.h
file contains all HYPR error codes.
HYPR SDK for iOS 4.6.0+
Display Error Code | Display Error String and Code | Detailed Cause | Error Line Listed Cause | Error Line Listed Reason |
---|---|---|---|---|
Error # 10128 | HYPRChainErrorCodeUserCancelled = 10128 | Operation cancelled by user | Operation canceled | Try again or request support for more assistance. |
Error # 105017 | HYPRErrorASMAuthenticationAuthenticateOutUserCancelled = 105017 | FIDO authentication user cancelled | Authentication canceled | Try again or request support for more assistance. |
Error # 105007 | HYPRErrorASMRegistrationRegisterOutUserCancelled = 105007 | FIDO registration user cancelled | Registration canceled | Try again or request support for more assistance. |
Error # 106007 | HYPRErrorAuthenticatorRegisterAuthenticatonResultCancelled = 106007 | FIDO registration user cancelled | Registration canceled | Try again or request support for more assistance. |
Error # 106011 | HYPRErrorAuthenticatorRegisterEnrollmentResultCancelled = 106011 | FIDO registration user cancelled | Registration canceled | Try again or request support for more assistance. |
Error # 106030 | HYPRErrorAuthenticatorSignAuthenticationUserCancelled = 106030 | FIDO sign user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 106035 | HYPRErrorAuthenticatorSignTransactionResultCancelled = 106035 | FIDO transaction sign user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 10999 | HYPRErrorCancelled = 10999 | The operation was cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 104018 | HYPRErrorClientAuthenticationASMHandleRequestUserCancelled = 104018 | FIDO authentication user cancelled | Authentication canceled | Try again or request support for more assistance. |
Error # 104011 | HYPRErrorClientRegistrationASMHandleRequestUserCancelled = 104011 | FIDO registration user cancelled | Registration canceled | Try again or request support for more assistance. |
Error # 107031 | HYPRErrorFaceAuthenticatorEnrollmentResultCancelled = 107031 | Face authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107029 | HYPRErrorFaceAuthenticatorUserCancelled = 107029 | Face authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107035 | HYPRErrorFaceAuthenticatorVerificationResultCancelled = 107035 | Face authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107004 | HYPRErrorFaceIDAuthenticatorConfirmationResultCancelled = 107004 | Face ID authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107024 | HYPRErrorFaceIDAuthenticatorUserCancelled = 107024 | Face ID authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107012 | HYPRErrorFingerprintAuthenticatorConfirmationResultCancelled = 107012 | Fingerprint authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107023 | HYPRErrorFingerprintAuthenticatorUserCancelled = 107023 | Fingerprint authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107019 | HYPRErrorPINAuthenticatorConfirmationResultCancelled = 107019 | PIN authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107046 | HYPRErrorVoiceAuthenticatorEnrollmentResultCancelled = 107046 | Voice authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107044 | HYPRErrorVoiceAuthenticatorUserCancelled = 107044 | Voice authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 107050 | HYPRErrorVoiceAuthenticatorVerificationResultCancelled = 107050 | Voice authenticator user cancelled | Operation canceled | Try again or request support for more assistance. |
Error # 10201 | HYPRChainErrorCodeADPFailed = 10201, | ADP failed | Operation failed | Try again or request support for more assistance. |
Error # 10129 | HYPRChainErrorCodeAuthFailed = 10129, | Data verification failed | Operation failed | Try again or request support for more assistance. |
Error # 10300 | HYPRChainErrorCodeKeyNotFound = 10300, | Key not found | Operation failed | Try again or request support for more assistance. |
Error # 10200 | HYPRChainErrorCodeSecureEnclaveFailed = 10200, | Secure Enclave failed | Operation failed | Try again or request support for more assistance. |
Error # 10100 | HYPRChainErrorCodeSHA256Unavailable = 10100, | SHA256 result not available | Operation failed | Try again or request support for more assistance. |
Error # 108002 | HYPRErrorADPCannotInitializeMoreThanOneInstance = 108002 | ADP already initialized | Initialization failed | Something went wrong with your authentication method. Please try again. |
Error # 108001 | HYPRErrorADPNotAvailable = 108001 | ADP not available | Initialization failed | Something went wrong with your authentication method. Please try again. |
Error # 108000 | HYPRErrorADPNotInitialized = 108000 | ADP not initialized | Operation failed | Try again or request support for more assistance. |
Error # 105015 | HYPRErrorASMAuthenticationAuthenticateOutAccessDenied = 105015 | FIDO authentication failed (multiple reasons) | Authentication failed | Try again or request support for more assistance. |
Error # 105019 | HYPRErrorASMAuthenticationAuthenticateOutAttestationNotSupported = 105019 | FIDO required attestation not supported | Authentication failed | Try again or request support for more assistance. |
Error # 105020 | HYPRErrorASMAuthenticationAuthenticateOutCannotRenderContent = 105020 | FIDO transaction content cannot be rendered | Authentication failed | Try again or request support for more assistance. |
Error # 105018 | HYPRErrorASMAuthenticationAuthenticateOutCmdNotSupported = 105018 | FIDO command not supported | Authentication failed | Try again or request support for more assistance. |
Error # 105014 | HYPRErrorASMAuthenticationAuthenticateOutError = 105014 | Authentication failed | Try again or request support for more assistance. | |
Error # 105021 | HYPRErrorASMAuthenticationAuthenticateOutUnknownError = 105021 | FIDO authentication unknown error | Authentication failed | Try again or request support for more assistance. |
Error # 105016 | HYPRErrorASMAuthenticationAuthenticateOutUserNotEnrolled = 105016 | FIDO authentication user not enrolled | Authentication failed | Try again or request support for more assistance. |
Error # 105022 | HYPRErrorASMAuthenticationAuthenticateZeroKeyHandles = 105022 | FIDO cannot find key handles for the current username, aaid, keyIds | Authentication failed | Try again or request support for more assistance. |
Error # 105012 | HYPRErrorASMAuthenticationAuthenticatorNotFound = 105012 | FIDO authenticator for index not found | Authentication failed | Try again or request support for more assistance. |
Error # 105011 | HYPRErrorASMAuthenticationBadAuthenticateParameters = 105011 | FIDO invalid authentication ASM request | Authentication failed | Try again or request support for more assistance. |
Error # 105013 | HYPRErrorASMAuthenticationBadSigningRequestParameters = 105013 | FIDO authentication signing ASM request invalid | Authentication failed | Try again or request support for more assistance. |
Error # 105010 | HYPRErrorASMAuthenticationInvalidRequestType = 105010 | FIDO Invalid authentication ASM request | Authentication failed | Try again or request support for more assistance. |
Error # 105027 | HYPRErrorASMDeregisterAccessDenied = 105027 | FIDO deregistration failed (multiple reasons) | Deregistration failed | Try again or request support for more assistance. |
Error # 105025 | HYPRErrorASMDeregisterAuthenticatorNotFound = 105025 | FIDO deregistration authenticator not found | Deregistration failed | Try again or request support for more assistance. |
Error # 105024 | HYPRErrorASMDeregisterBadDegisterParameters = 105024 | FIDO deregistration invalid ASM request | Deregistration failed | Try again or request support for more assistance. |
Error # 105030 | HYPRErrorASMDeregisterDeleteError = 105030 | FIDO deregistration cannot delete public private key pair | Deregistration failed | Try again or request support for more assistance. |
Error # 105029 | HYPRErrorASMDeregisterHashNotEqual = 105029 | FIDO deregistration khAccessTokenHash from server is not equal to the local one | Deregistration failed | Try again or request support for more assistance. |
Error # 105023 | HYPRErrorASMDeregisterInvalidRequestType = 105023 | FIDO deregistration invalid ASM request type | Deregistration failed | Try again or request support for more assistance. |
Error # 105028 | HYPRErrorASMDeregisterNoKeyHandle = 105028 | FIDO deregistration cannot find key handles for the current aaid, keyIds | Deregistration failed | Try again or request support for more assistance. |
Error # 105026 | HYPRErrorASMDeregisterUnableToParseCommand = 105026 | FIDO deregistration invalid ASM request | Deregistration failed | Try again or request support for more assistance. |
Error # 105038 | HYPRErrorASMGetInfoInvalidRequestType = 105038 | FIDO get information invalid ASM request type | Operation failed | Try again or request support for more assistance. |
Error # 105037 | HYPRErrorASMGetRegistrationsAuthenticatorNotFound = 105037 | FIDO get registration authenticator not found | Operation failed | Try again or request support for more assistance. |
Error # 105035 | HYPRErrorASMGetRegistrationsBadGetRegistrationParameters = 105035 | FIDO get registration invalid ASM request | Operation failed | Try again or request support for more assistance. |
Error # 105036 | HYPRErrorASMGetRegistrationsInvalidRequestType = 105036 | FIDO get registration invalid ASM request type | Operation failed | Try again or request support for more assistance. |
Error # 105032 | HYPRErrorASMOpenSettingsAuthenticatorNotFound = 105032 | FIDO open settings authenticator not found | Operation failed | Try again or request support for more assistance. |
Error # 105033 | HYPRErrorASMOpenSettingsCmdNotSupported = 105033 | FIDO command not supported | Operation failed | Try again or request support for more assistance. |
Error # 105031 | HYPRErrorASMOpenSettingsInvalidRequestType = 105031 | FIDO open settings invalid ASM request type | Operation failed | Try again or request support for more assistance. |
Error # 105034 | HYPRErrorASMOpenSettingsUnknownError = 105034 | FIDO open setting unknown error | Operation failed | Try again or request support for more assistance. |
Error # 105003 | HYPRErrorASMRegistrationAuthenticatorNotFound = 105003 | FIDO authenticator for index not found | Registration failed | Try again or request support for more assistance. |
Error # 105002 | HYPRErrorASMRegistrationBadRegisterParameters = 105002 | FIDO invalid registration ASM request | Registration failed | Try again or request support for more assistance. |
Error # 105001 | HYPRErrorASMRegistrationInvalidRequestType = 105001 | FIDO Invalid registration ASM request | Registration failed | Try again or request support for more assistance. |
Error # 105004 | HYPRErrorASMRegistrationNoRegisterRequest = 105004 | FIDO cannot generate registration request | Registration failed | Try again or request support for more assistance. |
Error # 105006 | HYPRErrorASMRegistrationRegisterOutAccessDenied = 105006 | FIDO registration failed (multiple reasons) | Registration failed | Try again or request support for more assistance. |
Error # 105008 | HYPRErrorASMRegistrationRegisterOutAttestationNotSupported = 105008 | FIDO required attestation not supported | Registration failed | Try again or request support for more assistance. |
Error # 105005 | HYPRErrorASMRegistrationRegisterOutError = 105005 | Registration failed | Try again or request support for more assistance. | |
Error # 105009 | HYPRErrorASMRegistrationRegisterOutUnknownError = 105009 | FIDO registration unknown error | Registration failed | Try again or request support for more assistance. |
Error # 10102 | HYPRErrorAuthenticationFailed = 10102 | The authentication operation failed | Authentication failed | Try again or request support for more assistance. |
Error # 106019 | HYPRErrorAuthenticatorDeregisterAuthenticatorNotFound = 106019 | FIDO deregistration authenticator not found | Deregistration failed | Try again or request support for more assistance. |
Error # 106018 | HYPRErrorAuthenticatorDeregisterUnableToParseCommand = 106018 | FIDO deregistration invalid authenticator command | Deregistration failed | Try again or request support for more assistance. |
Error # 106036 | HYPRErrorAuthenticatorGetInfoUnableToParseCommand = 106036 | FIDO get information invalid command | Operation failed | Try again or request support for more assistance. |
Error # 106037 | HYPRErrorAuthenticatorOpenSettingsUnableToParseCommand = 106037 | FIDO open settings invalid command | Operation failed | Try again or request support for more assistance. |
Error # 106008 | HYPRErrorAuthenticatorRegisterAuthenticatonResultFailed = 106008 | FIDO registration failed | Registration failed | Try again or request support for more assistance. |
Error # 106009 | HYPRErrorAuthenticatorRegisterAuthenticatonResultUnavailable = 106009 | FIDO registration result unavailable | Registration failed | Try again or request support for more assistance. |
Error # 106010 | HYPRErrorAuthenticatorRegisterAuthenticatonResultUnknown = 106010 | FIDO registration result unknown | Registration failed | Try again or request support for more assistance. |
Error # 106002 | HYPRErrorAuthenticatorRegisterAuthenticatorAuthenticatorNotFound = 106002 | FIDO registration authenticator not found | Registration failed | Try again or request support for more assistance. |
Error # 106016 | HYPRErrorAuthenticatorRegisterAuthenticatorGenerateKeyError = 106016 | FIDO registration key generation failed | Registration failed | Try again or request support for more assistance. |
Error # 106017 | HYPRErrorAuthenticatorRegisterAuthenticatorHashAndSignError = 106017 | FIDO registration hashing and signing response error | Registration failed | Try again or request support for more assistance. |
Error # 106003 | HYPRErrorAuthenticatorRegisterAuthenticatorNoPublicKeyData = 106003 | FIDO registration no public key data found | Registration failed | Try again or request support for more assistance. |
Error # 106006 | HYPRErrorAuthenticatorRegisterAuthenticatorNoRawSignature = 106006 | FIDO registration no raw signature created | Registration failed | Try again or request support for more assistance. |
Error # 106004 | HYPRErrorAuthenticatorRegisterAuthenticatorNoRegistrationData = 106004 | FIDO registration no registration data found | Registration failed | Try again or request support for more assistance. |
Error # 106005 | HYPRErrorAuthenticatorRegisterAuthenticatorNoSignedData = 106005 | FIDO registration no signed data created | Registration failed | Try again or request support for more assistance. |
Error # 106001 | HYPRErrorAuthenticatorRegisterAuthenticatorUnableToParseCommand = 106001 | FIDO registration invalid authenticator command | Registration failed | Try again or request support for more assistance. |
Error # 106015 | HYPRErrorAuthenticatorRegisterEnrollmentAlreadyEnrolled = 106015 | FIDO registration user already enrolled | Registration failed | Try again or request support for more assistance. |
Error # 106012 | HYPRErrorAuthenticatorRegisterEnrollmentResultFailed = 106012 | FIDO registration enrollment failed | Registration failed | Try again or request support for more assistance. |
Error # 106013 | HYPRErrorAuthenticatorRegisterEnrollmentResultUnavailable = 106013 | FIDO registration enrollment unavailable | Registration failed | Try again or request support for more assistance. |
Error # 106014 | HYPRErrorAuthenticatorRegisterEnrollmentResultUnknown = 106014 | FIDO registration enrollment result unknown | Registration failed | Try again or request support for more assistance. |
Error # 106029 | HYPRErrorAuthenticatorSignAuthenticationAccessDenied = 106029 | FIDO sign failed (multiple reasons) | Operation failed | Try again or request support for more assistance. |
Error # 106028 | HYPRErrorAuthenticatorSignAuthenticationUnknownError = 106028 | FIDO sign unknown error | Operation failed | Try again or request support for more assistance. |
Error # 106031 | HYPRErrorAuthenticatorSignAuthenticationUserNotEnrolled = 106031 | FIDO authentication user not enrolled | Operation failed | Try again or request support for more assistance. |
Error # 106021 | HYPRErrorAuthenticatorSignAuthenticatorNotFound = 106021 | FIDO authentication authenticator not found | Authentication failed | Try again or request support for more assistance. |
Error # 106025 | HYPRErrorAuthenticatorSignHashAndSignError = 106025 | FIDO sign hashing and signing response error | Operation failed | Try again or request support for more assistance. |
Error # 106022 | HYPRErrorAuthenticatorSignNoAuthenticatorInfo = 106022 | FIDO authentication authenticator info not found | Authentication failed | Try again or request support for more assistance. |
Error # 106027 | HYPRErrorAuthenticatorSignNoRawSignature = 106027 | FIDO no raw signature created | Operation failed | Try again or request support for more assistance. |
Error # 106026 | HYPRErrorAuthenticatorSignNoSignature = 106026 | FIDO failed to sign the command | Operation failed | Try again or request support for more assistance. |
Error # 106033 | HYPRErrorAuthenticatorSignTransactionAccessDenied = 106033 | FIDO transaction sign failed (multiple reasons) | Operation failed | Try again or request support for more assistance. |
Error # 106034 | HYPRErrorAuthenticatorSignTransactionCannotRenderContent = 106034 | FIDO transaction content cannot be rendered | Operation failed | Try again or request support for more assistance. |
Error # 106032 | HYPRErrorAuthenticatorSignTransactionUnknownError = 106032 | FIDO transaction sign unknown error | Operation failed | Try again or request support for more assistance. |
Error # 106020 | HYPRErrorAuthenticatorSignUnableToParseCommand = 106020 | FIDO authentication invalid sing command | Authentication failed | Try again or request support for more assistance. |
Error # 106023 | HYPRErrorAuthenticatorSignUserNotEnrolled = 106023 | FIDO authentication user not enrolled | Authentication failed | Try again or request support for more assistance. |
Error # 106024 | HYPRErrorAuthenticatorSignZeroKeyHandles = 106024 | FIDO cannot find key handles for the current username, aaid, keyIds | Operation failed | Try again or request support for more assistance. |
Error # 104016 | HYPRErrorClientAuthenticationASMError = 104016 | FIDO Failed to initialize ASM | Authentication failed | Try again or request support for more assistance. |
Error # 104019 | HYPRErrorClientAuthenticationASMHandleRequestAccessDenied = 104019 | FIDO authentication failed (multiple reasons) | Authentication failed | Try again or request support for more assistance. |
Error # 104020 | HYPRErrorClientAuthenticationASMHandleRequestError = 104020 | FIDO authentication ASM request invalid | Authentication failed | Try again or request support for more assistance. |
Error # 104021 | HYPRErrorClientAuthenticationAuthenticationResponseError = 104021 | FIDO authentication UAF response invalid | Authentication failed | Try again or request support for more assistance. |
Error # 104017 | HYPRErrorClientAuthenticationAuthenticatorNotFound = 104017 | FIDO no authenticators matched during authentication | Authentication failed | Try again or request support for more assistance. |
Error # 104015 | HYPRErrorClientAuthenticationInvalidRequest = 104015 | FIDO Invalid authentication request | Authentication failed | Try again or request support for more assistance. |
Error # 104023 | HYPRErrorClientDeregisterASMError = 104023 | FIDO Failed to initialize ASM | Deregistration failed | Try again or request support for more assistance. |
Error # 104024 | HYPRErrorClientDeregisterASMHandleRequestAccessDenied = 104024 | FIDO deregistration failed (multiple reasons) | Deregistration failed | Try again or request support for more assistance. |
Error # 104025 | HYPRErrorClientDeregisterASMHandleRequestError = 104025 | FIDO deregistration ASM request invalid | Deregistration failed | Try again or request support for more assistance. |
Error # 104022 | HYPRErrorClientDeregisterInvalidRequest = 104022 | FIDO Invalid deregistration request | Deregistration failed | Try again or request support for more assistance. |
Error # 104004 | HYPRErrorClientHTTPUsed = 104004 | FIDO http used instead of https in UAF request | Operation failed | Try again or request support for more assistance. |
Error # 104001 | HYPRErrorClientInitializationError = 104001 | FIDO UAF Protocol object missing/malformed | Operation failed | Try again or request support for more assistance. |
Error # 104003 | HYPRErrorClientInvalidRequestType = 104003 | Operation failed | Try again or request support for more assistance. | |
Error # 104006 | HYPRErrorClientInvalidTrustedFacetsCount = 104006 | FIDO Wrong number of facets retrieved from url | Operation failed | Try again or request support for more assistance. |
Error # 104009 | HYPRErrorClientRegistrationASMError = 104009 | FIDO Failed to initialize ASM | Registration failed | Try again or request support for more assistance. |
Error # 104012 | HYPRErrorClientRegistrationASMHandleRequestAccessDenied = 104012 | FIDO registration failed (multiple reasons) | Registration failed | Try again or request support for more assistance. |
Error # 104013 | HYPRErrorClientRegistrationASMHandleRequestError = 104013 | FIDO registration ASM request invalid | Registration failed | Try again or request support for more assistance. |
Error # 104010 | HYPRErrorClientRegistrationAuthenticatorNotFound = 104010 | FIDO no authenticators matched during registration | Registration failed | Try again or request support for more assistance. |
Error # 104008 | HYPRErrorClientRegistrationInvalidRequest = 104008 | FIDO Invalid registration request | Registration failed | Try again or request support for more assistance. |
Error # 104014 | HYPRErrorClientRegistrationRegistrationResponseError = 104014 | FIDO registration UAF response invalid | Registration failed | Try again or request support for more assistance. |
Error # 104027 | HYPRErrorClientSetAAIDPickerViewControllerError = 104027 | FIDO Consumer’s AAID picker view controller doesn’t conform to HYPRAuthenticatorPicker category | Operation failed | Try again or request support for more assistance. |
Error # 104007 | HYPRErrorClientTrustedFacetsFromError = 104007 | FIDO Wrong facets format or content | Operation failed | Try again or request support for more assistance. |
Error # 104005 | HYPRErrorClientTrustedFacetsFromURLError = 104005 | FIDO Retrieving facets from url failed | Operation failed | Try again or request support for more assistance. |
Error # 104002 | HYPRErrorClientUnknownOperation = 104002 | FIDO UAF Protocol object missing/malformed | Operation failed | Try again or request support for more assistance. |
Error # 104026 | HYPRErrorClientUnknownUnknownError = 104026 | FIDO unknown operation | Operation failed | Try again or request support for more assistance. |
Error # 1020000 | HYPRErrorCoreHMACValidationFailed = 1020000 | HMAC validation failed | Operation failed | Try again or request support for more assistance. |
Error # 10102 | HYPRErrorDeregisterFailed = 10102 | The deregister operation failed | Deregistration failed | Try again or request support for more assistance. |
Error # 107025 | HYPRErrorFaceAuthenticatorAlreadyEnrolled = 107025 | Face authenticator user already enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107028 | HYPRErrorFaceAuthenticatorCannotRenderContent = 107028 | Face authenticator cannot render content | Operation failed | Try again or request support for more assistance. |
Error # 107027 | HYPRErrorFaceAuthenticatorDeregisterUnknownError = 107027 | Operation failed | Try again or request support for more assistance. | |
Error # 107030 | HYPRErrorFaceAuthenticatorEnrollmentResultFailed = 107030 | Face authenticator user enrollment failed | Operation failed | Try again or request support for more assistance. |
Error # 107032 | HYPRErrorFaceAuthenticatorEnrollmentResultTimedOut = 107032 | Face authenticator enrollment timeout | Operation failed | Try again or request support for more assistance. |
Error # 107033 | HYPRErrorFaceAuthenticatorEnrollmentResultUnknownError = 107033 | Face authenticator user enrollment result unknown | Operation failed | Try again or request support for more assistance. |
Error # 107038 | HYPRErrorFaceAuthenticatorUserDataMigrationFailed = 107038 | Face authenticator user data migration to new version failed | Operation failed | Try again or request support for more assistance. |
Error # 107026 | HYPRErrorFaceAuthenticatorUserIsNotEnrolled = 107026 | Face authenticator user is not enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107034 | HYPRErrorFaceAuthenticatorVerificationResultFailed = 107034 | Face authenticator user verification failed | Operation failed | Try again or request support for more assistance. |
Error # 107036 | HYPRErrorFaceAuthenticatorVerificationResultTimedOut = 107036 | Face authenticator verification timeout | Operation failed | Your request did not complete in time. Please try again. |
Error # 107037 | HYPRErrorFaceAuthenticatorVerificationResultUnknownError = 107037 | Face authenticator verification result unknown | Operation failed | Try again or request support for more assistance. |
Error # 107001 | HYPRErrorFaceIDAuthenticator = 107001 | Face ID authenticator error | Operation failed | Try again or request support for more assistance. |
Error # 107006 | HYPRErrorFaceIDAuthenticatorAlreadyEnrolled = 107006 | Face ID authenticator user already enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107003 | HYPRErrorFaceIDAuthenticatorCannotRenderContent = 107003 | Face ID authenticator cannot render content | Operation failed | Try again or request support for more assistance. |
Error # 107007 | HYPRErrorFaceIDAuthenticatorDeletionResultNotEnrolled = 107007 | Operation failed | Try again or request support for more assistance. | |
Error # 107005 | HYPRErrorFaceIDAuthenticatorDeletionResultNotSupported = 107005 | Face ID biometric removal not supported | Operation failed | Try again or request support for more assistance. |
Error # 107008 | HYPRErrorFaceIDAuthenticatorDeletionResultUnknown = 107008 | Operation failed | Try again or request support for more assistance. | |
Error # 107002 | HYPRErrorFaceIDAuthenticatorNotAvailable = 107002 | Face ID authenticator not available | Operation failed | Try again or request support for more assistance. |
Error # 107009 | HYPRErrorFingerprintAuthenticator = 107009 | Fingerprint authenticator error | Operation failed | Try again or request support for more assistance. |
Error # 107014 | HYPRErrorFingerprintAuthenticatorAlreadyEnrolled = 107014 | Fingerprint authenticator user already enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107011 | HYPRErrorFingerprintAuthenticatorCannotRenderContent = 107011 | Fingerprint authenticator cannot render content | Operation failed | Try again or request support for more assistance. |
Error # 107015 | HYPRErrorFingerprintAuthenticatorDeletionResultNotEnrolled = 107015 | Operation failed | Try again or request support for more assistance. | |
Error # 107013 | HYPRErrorFingerprintAuthenticatorDeletionResultNotSupported = 107013 | Fingerprint biometric removal not supported | Operation failed | Try again or request support for more assistance. |
Error # 107016 | HYPRErrorFingerprintAuthenticatorDeletionResultUnknown = 107016 | Operation failed | Try again or request support for more assistance. | |
Error # 107010 | HYPRErrorFingerprintAuthenticatorNotAvailable = 107010 | Fingerprint authenticator not available | Operation failed | Try again or request support for more assistance. |
Error # 10111 | HYPRErrorInsufficientPermission = 10111 | Sensory The operation was not granted permission to complete | Operation failed | Try again or request support for more assistance. |
Error # 10100 | HYPRErrorInvalidParameters = 10100 | Parameters supplied were not valid for the specified operation | Operation failed | Try again or request support for more assistance. |
Error # 102502 | HYPRErrorLicenseJSONSerializationFailed = 102502 | Parsing Licensing server response failed | Operation failed | Try again or request support for more assistance. |
Error # 10112 | HYPRErrorLicenseSetupFailed = 10112 | Unable to successfully complete license setup | Something went wrong | It looks like you are offline, so we couldn't complete the pairing process. Check that you are connected to the internet and try again. |
Error # 102503 | HYPRErrorLicenseUnexpectedResponsePayloadFormat = 102503 | Parsing Licensing server response failed | Operation failed | Try again or request support for more assistance. |
Error # 102501 | HYPRErrorLicenseURLDataTaskRequestFailed = 102501 | Request to Licensing server failed | Operation failed | Try again or request support for more assistance. |
Error # 107017 | HYPRErrorPINAuthenticatorAlreadyEnrolled = 107017 | PIN authenticator user already enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107018 | HYPRErrorPINAuthenticatorCannotRenderContent = 107018 | PIN authenticator cannot render content | Operation failed | Try again or request support for more assistance. |
Error # 107020 | HYPRErrorPINAuthenticatorDeletionResultNotEnrolled = 107020 | PIN authenticator user not enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107021 | HYPRErrorPINAuthenticatorDeletionResultUnknown = 107021 | PIN authenticator user data deletion error | Operation failed | Try again or request support for more assistance. |
Error # 107022 | HYPRErrorPINAuthenticatorUserIsNotEnrolled = 107022 | PIN authenticator user not enrolled | Operation failed | Try again or request support for more assistance. |
Error # 1030010 | HYPRErrorQRCodeScanPermissionError = 1030010 | Not enough permissions to enable QR scanner | Operation failed | This app needs permission to use the camera. Please enable it in the app’s settings. |
Error # 10101 | HYPRErrorRegistrationFailed = 10101 | The registration operation failed | Something went wrong | Try again or request support for more assistance. |
Error # 102002 | HYPRErrorRelyingPartyJSONSerializationFailed = 102002 | Parsing RP server response failed | Operation failed | Try again or request support for more assistance. |
Error # 102003 | HYPRErrorRelyingPartyUnexpectedResponsePayloadFormat = 102003 | Parsing RP server response failed | Operation failed | Try again or request support for more assistance. |
Error # 102001 | HYPRErrorRelyingPartyURLDataTaskRequestFailed = 102001 | Request to the RP server failed | Operation failed | Try again or request support for more assistance. |
Error # 10109 | HYPRErrorRemoteDeviceAuthenticationFailed = 10109 | Unable to complete the remote device authentication (eg. push notification-based operation for web login or transaction) | Something went wrong | We couldn't reach your device to unlock it. Check that it's turned on, and that you are connected to the internet, then try again. |
Error # 10108 | HYPRErrorRemoteDeviceCancelUnlockFailed = 10108 | Unable to cancel the authorized unlock (eg. unlock windows machine) | Something went wrong | It looks like you are offline, so we couldn't cancel the unlocking process. Check that you are connected to the internet and try again. |
Error # 10102 | HYPRErrorRemoteDeviceCompleteRegistrationFailed = 10106 | Unable to register the remote device | Pairing failed | Try again or request support for more assistance. |
Error # 10110 | HYPRErrorRemoteDeviceDeregisterFailed = 10110 | Unable to complete the deregister of one or more remote devices | Deregistration failed | Check that you are connected to the internet and try again. |
Error # 10104 | HYPRErrorRemoteDeviceRegistrationFailed = 10104 | Unable to register the remote device | Registration failed | Try again or request support for more assistance. |
Error # 10105 | HYPRErrorRemoteDeviceSetupRegistrationFailed = 10105 | Unable to register the remote device | Registration failed | Try again or request support for more assistance. |
Error # 10107 | HYPRErrorRemoteDeviceUnlockFailed = 10107 | Unable to unlock the remote device (eg. unlock windows machine) | Something went wrong | It looks like you are offline, so we couldn't complete your login. Check that you are connected to the internet and try again. |
Error # 10114 | HYPRErrorResetAppFailed = 10114 | Unable to successfully complete reset app | Something went wrong | It looks like you are offline, so we couldn't complete the pairing process. Check that you are connected to the internet and try again. |
Error # 10113 | HYPRErrorStatusUpdateFailed = 10113 | Unable to successfully complete status request | Something went wrong | It looks like you are offline, so we couldn't complete the pairing process. Check that you are connected to the internet and try again. |
Error # 0 | HYPRErrorSuccess = 100 | Operation succeeded | Operation failed | Try again or request support for more assistance. |
Error # 1 | HYPRErrorUnknown = 101 | An unknown error occurred | Operation failed | Try again or request support for more assistance. |
Error # 101004 | HYPRErrorUserAgentAuthenticationGetRequestError = 101004 | FIDO Authentication get request failed | Authentication failed | Try again or request support for more assistance. |
Error # 101005 | HYPRErrorUserAgentAuthenticationInvalidUAFResponse = 101005 | FIDO Invalid UAF authentication response received | Authentication failed | Try again or request support for more assistance. |
Error # 101006 | HYPRErrorUserAgentAuthenticationSendRequestError = 101006 | FIDO Authentication send request failed | Authentication failed | Try again or request support for more assistance. |
Error # 101007 | HYPRErrorUserAgentDeregisterGetRequestError = 101007 | FIDO Deregistration get request failed | Deregistration failed | Try again or request support for more assistance. |
Error # 101008 | HYPRErrorUserAgentDeregisterInvalidUAFResponse = 101008 | FIDO Invalid UAF deregistration response received | Deregistration failed | Try again or request support for more assistance. |
Error # 101018 | HYPRErrorUserAgentDeviceAuthenticateWithShoveFailed = 101018 | Remote Device OOB authentication failed | Authentication failed | Something went wrong with your authentication method. Please try again. |
Error # 101030 | HYPRErrorUserAgentDeviceAuthorizeUnlockSessionSaveError = 101030 | Operation failed | Try again or request support for more assistance. | |
Error # 101022 | HYPRErrorUserAgentDeviceCancelUnlockError = 101022 | Remote Device Cancel unlock failed | Operation failed | Try again or request support for more assistance. |
Error # 101023 | HYPRErrorUserAgentDeviceCancelUnlockSessionRetrieveError = 101023 | Operation failed | Try again or request support for more assistance. | |
Error # 101017 | HYPRErrorUserAgentDeviceCredentialsNotFound = 101017 | Remote Device credentials not found during OOB authentication | Authentication failed | Try again or request support for more assistance. |
Error # 101024 | HYPRErrorUserAgentDeviceDeregisterSessionRetrieveError = 101024 | Operation failed | Try again or request support for more assistance. | |
Error # 101025 | HYPRErrorUserAgentDeviceFidoGetSessionSaveError = 101025 | Operation failed | Try again or request support for more assistance. | |
Error # 101027 | HYPRErrorUserAgentDeviceFidoSendAuthSessionSaveError = 101027 | Operation failed | Try again or request support for more assistance. | |
Error # 101026 | HYPRErrorUserAgentDeviceFidoSendRegSessionSaveError = 101026 | Operation failed | Try again or request support for more assistance. | |
Error # 101029 | HYPRErrorUserAgentDeviceRegistrationsSessionSaveError = 101029 | Operation failed | Try again or request support for more assistance. | |
Error # 101012 | HYPRErrorUserAgentDeviceSetupExistingUserError = 101012 | Remote Device registration for existing user failed | Registration failed | Try again or request support for more assistance. |
Error # 101009 | HYPRErrorUserAgentDeviceSetupGetRequestError = 101009 | Remote Device setup request failed | Registration failed | Try again or request support for more assistance. |
Error # 101011 | HYPRErrorUserAgentDeviceSetupNewUserError = 101011 | Remote Device registration for new user failed | Registration failed | Try again or request support for more assistance. |
Error # 101010 | HYPRErrorUserAgentDeviceSetupSendRequestError = 101010 | Remote Device registration request failed | Registration failed | Try again or request support for more assistance. |
Error # 101028 | HYPRErrorUserAgentDeviceSetupSessionSaveError = 101028 | Failed to save Remote Device session during setup | Operation failed | Try again or request support for more assistance. |
Error # 101021 | HYPRErrorUserAgentDeviceStatusUpdateError = 101021 | Remote Device status update failed | Operation failed | Try again or request support for more assistance. |
Error # 101013 | HYPRErrorUserAgentDeviceUnlockAuthenticationError = 101013 | Remote Device unlock authentication failed | Authentication failed | Try again or request support for more assistance. |
Error # 101015 | HYPRErrorUserAgentDeviceUnlockAuthenticationHMACError = 101015 | Remote Device Authentication HMACs generation failed | Authentication failed | Try again or request support for more assistance. |
Error # 101016 | HYPRErrorUserAgentDeviceUnlockAuthorizationCompleteError = 101016 | Remote Device unlock failed | Authentication failed | Try again or request support for more assistance. |
Error # 101014 | HYPRErrorUserAgentDeviceUnlockAuthorizationError = 101014 | Remote Device unlock failed | Authentication failed | Try again or request support for more assistance. |
Error # 101031 | HYPRErrorUserAgentDeviceUnlockLoggedOutError = 101031 | Remote Device logged out during unlock request | Operation failed | Try again or request support for more assistance. |
Error # 101032 | HYPRErrorUserAgentDeviceUnlockUnlockedError = 101032 | Attempt to unlock already unlocked workstation | Operation failed | Try again or request support for more assistance. |
Error # 101019 | HYPRErrorUserAgentNoProfileRegistered = 101019 | No registered profiles found | Operation failed | Try again or request support for more assistance. |
Error # 101020 | HYPRErrorUserAgentNoUserAccountRegistered = 101020 | Operation failed | Try again or request support for more assistance. | |
Error # 101001 | HYPRErrorUserAgentRegistrationGetRequestError = 101001 | FIDO Registration get request failed | Operation failed | Try again or request support for more assistance. |
Error # 101002 | HYPRErrorUserAgentRegistrationInvalidUAFResponse = 101002 | FIDO Invalid UAF registration response received | Registration failed | Try again or request support for more assistance. |
Error # 101003 | HYPRErrorUserAgentRegistrationSendRequestError = 101003 | FIDO Registration send request failed | Registration failed | Try again or request support for more assistance. |
Error # 101033 | HYPRErrorUserAgentWebProfilesLimitReached = 101033 | Web profiles limit reached | Something went wrong | You've reached the limit of paired web accounts. Unpair an account you're not using and try again. |
Error # 101036 | HYPRErrorUserAgentWebRemoteDeviceAlreadyPaired = 101036 | The account (email) on the current rp is already paired | Something went wrong | This account is already paired with your HYPR app.. |
Error # 101034 | HYPRErrorUserAgentWorkstationProfilesLimitReached = 101034 | Workstation profiles limit reached | Something went wrong | You've reached the limit of paired devices. Unpair a computer you're not using and try again. |
Error # 101037 | HYPRErrorUserAgentWorkstationRemoteDeviceAlreadyPaired = 101037 | The workstation on the current rp already paired | Something went wrong | This computer is already paired with your HYPR app. You can unlock it from the home screen. |
Error # 101035 | HYPRErrorUserAgentWorkstationsLimitReached = 101035 | Workstations limit reached | Something went wrong | You've reached the limit of paired devices. Unpair a computer you're not using and try again. |
Error # 1030001 | HYPRErrorVersionNegotiationHigherThanSupported = 1030001 | Server API version higher than supported by the SDK | Something went wrong | Try again or request support for more assistance. |
Error # 1030000 | HYPRErrorVersionNegotiationLowerThanSupported = 1030000 | Server API version lower than supported by the SDK | Something went wrong | Try again or request support for more assistance. |
Error # 107040 | HYPRErrorVoiceAuthenticatorAlreadyEnrolled = 107040 | Voice authenticator user already enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107043 | HYPRErrorVoiceAuthenticatorCannotRenderContent = 107043 | Voice authenticator cannot render content | Operation failed | Try again or request support for more assistance. |
Error # 107042 | HYPRErrorVoiceAuthenticatorDeregisterUnknownError = 107042 | Operation failed | Try again or request support for more assistance. | |
Error # 107045 | HYPRErrorVoiceAuthenticatorEnrollmentResultFailed = 107045 | Voice authenticator user enrollment failed | Operation failed | Try again or request support for more assistance. |
Error # 107047 | HYPRErrorVoiceAuthenticatorEnrollmentResultTimedOut = 107047 | Voice authenticator enrollment timeout | Operation failed | Try again or request support for more assistance. |
Error # 107048 | HYPRErrorVoiceAuthenticatorEnrollmentResultUnknownError = 107048 | Voice authenticator user enrollment result unknown | Operation failed | Try again or request support for more assistance. |
Error # 107053 | HYPRErrorVoiceAuthenticatorUserDataMigrationFailed = 107053 | Voice authenticator user data migration to new version failed | Operation failed | Try again or request support for more assistance. |
Error # 107041 | HYPRErrorVoiceAuthenticatorUserIsNotEnrolled = 107041 | Voice authenticator user is not enrolled | Operation failed | Try again or request support for more assistance. |
Error # 107049 | HYPRErrorVoiceAuthenticatorVerificationResultFailed = 107049 | Voice authenticator user verification failed | Operation failed | Try again or request support for more assistance. |
Error # 107051 | HYPRErrorVoiceAuthenticatorVerificationResultTimedOut = 107051 | Voice authenticator verification timeout | Operation failed | Your request did not complete in time. Please try again. |
Error # 107052 | HYPRErrorVoiceAuthenticatorVerificationResultUnknownError = 107052 | Voice authenticator verification result unknown | Operation failed | Try again or request support for more assistance. |
Error # 103000 | HYPRErrorServer | Failed to Match PIN | Registration failed | Please try again or request support for more assistance. |
Error # 1010004 | HYPRErrorKeyAgreementInvalidPublicKey = 1010004 | Offline mode invalid public key | Offline mode failed | Please try again or request support for more assistance. |
Error # 101038 | HYPRErrorUserAgentWorkstationRemoteDeviceAuthorizationRejected = 101038 | The workstation on the current rp already paired | Operation failed | Please try again or request support for more assistance. |
PLACEHOLDER | HYPRErrorUserAgentRetrieveLoginCertError = 101045 | The workstation on the current rp already paired | Authentication failed | We are unable to authenticate you due to an error. Please delete this workstation and re-pair. |
Updated about 1 month ago