ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Salt.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
37final class Salt
38{
39 public function __construct(
40 private string $salt
41 ) {
42 }
43
44 public function get(): string
45 {
46 return $this->salt;
47 }
48}
The salt is combined with the secret key to derive a unique key for distinguishing different contexts...
Definition: Salt.php:38
__construct(private string $salt)
Definition: Salt.php:39