class JwtHsKeyType in JSON Web Token Authentication (JWT) 8
Same name and namespace in other branches
- 8.0 src/Plugin/KeyType/JwtHsKeyType.php \Drupal\jwt\Plugin\KeyType\JwtHsKeyType
Defines a key type for JWT HMAC Signatures.
Plugin annotation
@KeyType(
id = "jwt_hs",
label = @Translation("JWT HMAC Key"),
description = @Translation("A key used for JWT HMAC algorithms."),
group = "encryption",
key_value = {
"plugin" = "text_field"
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\key\Plugin\KeyPluginBase implements KeyPluginInterface
- class \Drupal\key\Plugin\KeyTypeBase implements KeyTypeInterface
- class \Drupal\jwt\Plugin\KeyType\JwtHsKeyType implements KeyPluginFormInterface
- class \Drupal\key\Plugin\KeyTypeBase implements KeyTypeInterface
- class \Drupal\key\Plugin\KeyPluginBase implements KeyPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of JwtHsKeyType
File
- src/
Plugin/ KeyType/ JwtHsKeyType.php, line 23
Namespace
Drupal\jwt\Plugin\KeyTypeView source
class JwtHsKeyType extends KeyTypeBase implements KeyPluginFormInterface {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'algorithm' => 'HS256',
];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$algorithm_options = [
'HS256' => $this
->t('HMAC using SHA-256 (HS256)'),
'HS384' => $this
->t('HMAC using SHA-384 (HS384)'),
'HS512' => $this
->t('HMAC using SHA-512 (HS512)'),
];
$algorithm = $this
->getConfiguration()['algorithm'];
$form['algorithm'] = [
'#type' => 'select',
'#title' => $this
->t('JWT Algorithm'),
'#description' => $this
->t('The JWT Algorithm to use with this key.'),
'#options' => $algorithm_options,
'#default_value' => $algorithm,
'#required' => TRUE,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this
->setConfiguration($form_state
->getValues());
}
/**
* {@inheritdoc}
*/
public static function generateKeyValue(array $configuration) {
$algorithm_keysize = self::getAlgorithmKeysize();
$algorithm = $configuration['algorithm'];
if (!empty($algorithm) && isset($algorithm_keysize[$algorithm])) {
$bytes = $algorithm_keysize[$algorithm] / 8;
}
else {
$bytes = $algorithm_keysize['HS256'] / 8;
}
$random_key = random_bytes($bytes);
return $random_key;
}
/**
* {@inheritdoc}
*/
public function validateKeyValue(array $form, FormStateInterface $form_state, $key_value) {
if (!$form_state
->getValue('algorithm')) {
return;
}
// Validate the key size.
$algorithm = $form_state
->getValue('algorithm');
$bytes = self::getAlgorithmKeysize()[$algorithm] / 8;
if (strlen($key_value) < $bytes) {
$form_state
->setErrorByName('algorithm', $this
->t('Key size (%size bits) is too small for algorithm chosen. Algorithm requires a minimum of %required bits.', [
'%size' => strlen($key_value) * 8,
'%required' => $bytes * 8,
]));
}
}
/**
* Get keysizes for the various algorithms.
*
* @return array
* An array key keysizes.
*/
protected static function getAlgorithmKeysize() {
return [
'HS256' => 512,
'HS384' => 1024,
'HS512' => 1024,
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
JwtHsKeyType:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
|
JwtHsKeyType:: |
public | function |
Gets default configuration for this plugin. Overrides KeyPluginBase:: |
|
JwtHsKeyType:: |
public static | function |
Generate a key value of this type using the submitted configuration. Overrides KeyTypeInterface:: |
|
JwtHsKeyType:: |
protected static | function | Get keysizes for the various algorithms. | |
JwtHsKeyType:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
JwtHsKeyType:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
|
JwtHsKeyType:: |
public | function |
Allows the Key Type plugin to validate the key value. Overrides KeyTypeInterface:: |
|
KeyPluginBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
KeyPluginBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
1 |
KeyPluginBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
KeyPluginBase:: |
public | function |
Returns the type of plugin. Overrides KeyPluginInterface:: |
|
KeyPluginBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
KeyPluginBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |