EMMspData

Objective-C

@protocol EMMspData <NSObject>

Swift

protocol EMMspData : NSObjectProtocol

A basic object protocol to retrieve the common public parameters of a decoded MspData Object

Since

4.5
  • Retrieve the base algorithm of the associated MspData object

    Since

    4.5

    Declaration

    Objective-C

    - (EMMspBaseAlgorithm)baseAlgo;

    Swift

    func baseAlgo() -> EMMspBaseAlgorithm

    Return Value

    a EMMspBaseAlgorithm representing the base algorithm of the associated MspData object

  • Retrieve the mode of the associated MspData object

    Since

    4.5

    Declaration

    Objective-C

    - (int)mode;

    Swift

    func mode() -> Int32

    Return Value

    a int representing the mode of the associated MspData object

  • Retrieve the userTokenId of the associated MspData object

    Since

    4.5

    Declaration

    Objective-C

    - (int)userTokenId;

    Swift

    func userTokenId() -> Int32

    Return Value

    a int representing the user token ID of the associated MspData object

  • Retrieve the externalId of the associated MspData object

    Since

    4.5

    Declaration

    Objective-C

    - (id<EMSecureString>)externalId;

    Swift

    func externalId() -> (any EMSecureString)!

    Return Value

    a SecureString representing the external ID of the associated MspData object

  • Retrieve the time of the associated MspData object

    Since

    4.5

    Declaration

    Objective-C

    - (uint64_t)time;

    Swift

    func time() -> UInt64

    Return Value

    a uint64_t variable representing the time of the associated MspData object