ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SigningKeyGenerator.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
32 {
33  public function generate(SecretKey $secret_key, Salt $salt): SigningKey;
34 }
Signatures are secured by the secret_key.
Definition: SecretKey.php:39
The salt is combined with the secret key to derive a unique key for distinguishing different contexts...
Definition: Salt.php:37