You are here

public function JwtHsKeyType::defaultConfiguration in JSON Web Token Authentication (JWT) 8.0

Same name and namespace in other branches
  1. 8 src/Plugin/KeyType/JwtHsKeyType.php \Drupal\jwt\Plugin\KeyType\JwtHsKeyType::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides KeyPluginBase::defaultConfiguration

File

src/Plugin/KeyType/JwtHsKeyType.php, line 28

Class

JwtHsKeyType
Defines a key type for JWT HMAC Signatures.

Namespace

Drupal\jwt\Plugin\KeyType

Code

public function defaultConfiguration() {
  return [
    'algorithm' => 'HS256',
  ];
}