EMAuthModule

Objective-C


@interface EMAuthModule : NSObject <EMModule>

Swift

class EMAuthModule : NSObject, EMModule

There are multiple ways to authenticate users before accessing the encrypted user credentials (for example, generating an OTP), via the authentication module.

The authentication module initiate the authentication service and the related authentication input represents the input value. The different authentication modes can be used independently of each other, for example if the biometric authentication mode is active on a token, then either the PIN (active by default) or biometric can be used to authenticate the user.

Any activated authentication mode can authenticate a user. The service can only be used after it is enabled.

Since

4.0
  • Returns the Auth module created

    Since

    4.0

    Declaration

    Objective-C

    + (EMAuthModule *)authModule;

    Swift

    class func authModule() -> EMAuthModule!

    Return Value

    The Auth module object.