OutOfBandRegistration
public protocol OutOfBandRegistration : HttpOperation
The operation handling an out-of-band registration.
This is the object returned by the SDK, when an OutOfBandPayload
was processed and the OutOfBandPayload
corresponds to a registration operation.
Usage example:
class AuthenticatorSelectorImpl: AuthenticatorSelector {
func selectAuthenticator(context: AuthenticatorSelectionContext, handler: AuthenticatorSelectionHandler) {
handler.aaid(aaid)
}
}
class BiometricUserVerifierImpl: BiometricUserVerifier {
func verifyBiometric(context: BiometricUserVerificationContext, handler: BiometricUserVerificationHandler) {
handler.verify()
}
}
class DevicePasscodeUserVerifierImpl: DevicePasscodeUserVerifier {
func verifyDevicePasscode(context: DevicePasscodeUserVerificationContext, handler: DevicePasscodeUserVerificationHandler) {
handler.verify()
}
}
class PinEnrollerImpl: PinEnroller {
func enrollPin(context: PinEnrollmentContext, handler: PinEnrollmentHandler) {
handler.pin(pin)
}
}
class PasswordEnrollerImpl: PasswordEnroller {
func enrollPassword(context: PasswordEnrollmentContext, handler: PasswordEnrollmentHandler) {
handler.password(password)
}
}
client.operations.outOfBandOperation
.payload(payload)
.onRegistration { oobRegistration in
oobRegistration
.deviceInformation(.init(name: "<name>", fcmRegistrationToken: "<target>"))
.authenticatorSelector(AuthenticatorSelectorImpl(...))
.biometricUserVerifier(BiometricUserVerifierImpl(...))
.devicePasscodeUserVerifier(DevicePasscodeUserVerifierImpl(...))
.pinEnroller(PinEnrollerImpl(...))
.passwordEnroller(PasswordEnrollerImpl(...))
.onError { error in
...
}
.onSuccess {
...
}
.execute()
}
.onAuthentication { oobAuthentication in
...
}
.execute()
The biometric and device Passcode authenticators are enrolled at the OS level.
That is why, if one of them must be registered, the user must authenticate through BiometricUserVerifier
or DevicePasscodeUserVerifier
.
In the case of the PIN and password, the credentials are enrolled during registration, so no verification is needed.
-
Specifies the device information to be used. The
DeviceInformation
is required only if there is not aDeviceInformation
already defined (that is, if this is the first registration). If aDeviceInformation
was already provided in an existing registration, the provided value will be ignored.Declaration
Swift
@discardableResult func deviceInformation(_ deviceInformation: DeviceInformation) -> OutOfBandRegistration
Parameters
deviceInformation
the device information.
Return Value
the
OutOfBandRegistration
builder. -
Specifies whether the OS device passcode can be used as fallback during biometric authentication. If not specified, the device passcode cannot be used as fallback.
Declaration
Swift
@discardableResult func allowDevicePasscodeAsFallback(_ allowDevicePasscodeAsFallback: Bool) -> OutOfBandRegistration
Parameters
allowDevicePasscodeAsFallback
indicates whether the device passcode can be used as fallback.
Return Value
the
OutOfBandRegistration
builder. -
Specifies whether the authenticator must be invalidated if the user adds new biometric credentials in the OS settings. If the authenticator has been invalidated, and you try to authenticate with it, an error with code
FidoErrorCode.keyDisappearedPermanently
will be returned by the authentication operation.This setting only applies to faceRecognition (
AuthenticatorAaid.FaceRecognition
) and fingerprint (AuthenticatorAaid.Fingerprint
) authenticators. By setting this parameter totrue
, you increase the security but there is a loss of convenience: adding a new OS biometric credential does not imply necessarily that there is a security risk, but if the end-user does it, a new registration will be required, because an invalidated authenticator cannot be recovered. If not specified, the authenticator will be invalidated when the user adds a new biometric credential in the OS settings.Declaration
Swift
@discardableResult func invalidateOnNewOsBiometrics(_ invalidateOnNewOsBiometrics: Bool) -> OutOfBandRegistration
Parameters
invalidateOnNewOsBiometrics
indicates whether an addition of biometric credentials in the OS should invalidate this authenticator (if the authenticator is Face ID or Touch ID)
Return Value
the
OutOfBandRegistration
builder. -
Specifies the object that will take care of the selection of the authenticator to be used.
Important
Providing the authenticator selector is required.Declaration
Swift
@discardableResult func authenticatorSelector(_ authenticatorSelector: AuthenticatorSelector) -> Self
Parameters
authenticatorSelector
Return Value
the
OutOfBandRegistration
builder. -
Specifies the object that will take care of the biometric user verification. It must be provided only if a biometric authenticator must be registered.
Important
Providing at least one of theBiometricUserVerifier
,DevicePasscodeUserVerifier
,PinEnroller
orPasswordEnroller
is required.Declaration
Swift
@discardableResult func biometricUserVerifier(_ biometricUserVerifier: BiometricUserVerifier) -> Self
Parameters
biometricUserVerifier
Return Value
the
OutOfBandRegistration
builder. -
Specifies the object that will take care of the device passcode user verification.
Important
Providing at least one of theBiometricUserVerifier
,DevicePasscodeUserVerifier
,PinEnroller
orPasswordEnroller
is required.Declaration
Swift
@discardableResult func devicePasscodeUserVerifier(_ devicePasscodeUserVerifier: DevicePasscodeUserVerifier) -> Self
Parameters
devicePasscodeUserVerifier
Return Value
the
OutOfBandRegistration
builder. -
Specifies the object that will take care of enrolling the PIN of the authenticator. It must be provided only if a PIN authenticator must be registered.
Important
Providing at least one of theBiometricUserVerifier
,DevicePasscodeUserVerifier
,PinEnroller
orPasswordEnroller
is required.Declaration
Swift
@discardableResult func pinEnroller(_ pinEnroller: PinEnroller) -> OutOfBandRegistration
Parameters
pinEnroller
the
PinEnroller
.Return Value
the
OutOfBandRegistration
builder. -
Specifies the object that will take care of enrolling the password of the authenticator. It must be provided only if a password authenticator must be registered.
Important
Providing at least one of theBiometricUserVerifier
,DevicePasscodeUserVerifier
,PinEnroller
orPasswordEnroller
is required.Declaration
Swift
@discardableResult func passwordEnroller(_ passwordEnroller: PasswordEnroller) -> OutOfBandRegistration
Parameters
passwordEnroller
the
PasswordEnroller
.Return Value
the
OutOfBandRegistration
builder. -
Specifies the block to execute if the registration was successful. This object will be invoked in the
DispatchQueue.main
thread.Important
Providing theonSuccess
block is required.Declaration
Swift
@discardableResult func onSuccess(_ onSuccess: @escaping () -> ()) -> OutOfBandRegistration
Parameters
onSuccess
the block to execute on successful registration.
Return Value
the
OutOfBandRegistration
builder. -
Specifies the block to execute if the registration failed. This object will be invoked in the
DispatchQueue.main
thread.Important
Providing theonError
block is required.Declaration
Swift
@discardableResult func onError(_ onError: @escaping (OperationError) -> ()) -> OutOfBandRegistration
Parameters
onError
the block to execute on failed registration, receives an
OperationError
.Return Value
the
OutOfBandRegistration
builder.