PinEnroller

public protocol PinEnroller : PinPolicyProvider

The object in charge of PIN enrollment.

Note

The SDK does not provide implementations of this interface. The implementation must be done by the user of the SDK.

  • The method that will be invoked till either - the user provides a PIN that conforms to the format expected by the SDK (i.e. a 6 digit PIN) or till the - operation is cancelled (through the PinEnrollmentHandler.cancel()).

    Declaration

    Swift

    func enrollPin(context: PinEnrollmentContext, handler: PinEnrollmentHandler)

    Parameters

    context

    the object containing contextual information for PIN enrollment.

    handler

    the object that is notified with the new PIN credentials.