EMDskppServerPinCallback

Objective-C

@protocol EMDskppServerPinCallback <NSObject>

Swift

protocol EMDskppServerPinCallback : NSObjectProtocol

Defines the methods to call back during OnServerPinRequestBlock. These methods need to be called to after the App has collected the PINs from the user in order to continue or cancel the DSKPP provisioning process

Since

4.1
  • The callback method to pass the PINs to continue the DSKPP provisioning process.

    Declaration

    Objective-C

    - (void)pinEntriesCompletedWithServerPin:(id<EMPinAuthInput>)serverPin
                                     userPin:(id<EMPinAuthInput>)userPin;

    Swift

    func pinEntriesCompleted(withServerPin serverPin: (any EMPinAuthInput)!, userPin: (any EMPinAuthInput)!)

    Parameters

    serverPin

    The server PIN that will be send to the server. Should not be nil

    userPin

    The user PIN value. Should not be nil.

  • Notifies the provisioning process to cancel.

    Declaration

    Objective-C

    - (void)cancelPinEntries;

    Swift

    func cancelPinEntries()