You are here

public static property AuthenticationType::$HARDWARE_TOKEN in Google Authenticator / 2 Factor Authentication - 2FA 8.2

File

src/AuthenticationType.php, line 248
Contains Authentication type class.

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $HARDWARE_TOKEN = array(
  'id' => 'hardware-token',
  'name' => 'Yubikey Hardware Token',
  'code' => 'HARDWARE TOKEN',
  'description' => 'You can press the button on your yubikey Hardware token which generate a random key. You can use that key to authenticate yourself.',
  'supported-for' => array(
    'hardware-token',
  ),
  'challenge' => TRUE,
  'oob' => TRUE,
  'test-route' => 'miniorange_2fa.test_hardware_token_authentication',
  'configure-route' => 'miniorange_2fa.configure_hardware_token_authentication',
);