Свойство | Type | Description | |
---|---|---|---|
$cache | |||
$encryptionKey | string | A private, unique key used for encryption tasks | |
$objectManager | Neos\Flow\ObjectManagement\ObjectManagerInterface | ||
$passwordHashingStrategies | array | ||
$strategySettings | array |
Méthode | Description | |
---|---|---|
appendHmac ( string $string ) : string | Appends a hash (HMAC) to a given string and returns the result | |
generateHmac ( string $string ) : string | Generate a hash (HMAC) for a given string | |
hashPassword ( string $password, string $strategyIdentifier = 'default' ) : string | Hash a password using the configured password hashing strategy | |
injectSettings ( array $settings ) : void | Injects the settings of the package this controller belongs to. | |
validateAndStripHmac ( string $string ) : string | Tests if the last 40 characters of a given string $string matches the HMAC of the rest of the string and, if true, returns the string without the HMAC. In case of a HMAC validation error, an exception is thrown. | |
validateHmac ( string $string, string $hmac ) : boolean | Tests if a string $string matches the HMAC given by $hash. | |
validatePassword ( string $password, string $hashedPasswordAndSalt ) : boolean | Validate a hashed password using the configured password hashing strategy |
Méthode | Description | |
---|---|---|
getEncryptionKey ( ) : string | Returns the encryption key from the persistent cache or Data/Persistent directory. If none exists, a new encryption key will be generated and stored in the cache. | |
getPasswordHashingStrategyAndIdentifier ( string $strategyIdentifier = 'default' ) : array |
Get a password hashing strategy |
public appendHmac ( string $string ) : string | ||
$string | string | The string for which a hash should be generated |
Résultat | string | The original string with HMAC of the string appended |
public generateHmac ( string $string ) : string | ||
$string | string | The string for which a hash should be generated |
Résultat | string | The hash of the string |
protected getEncryptionKey ( ) : string | ||
Résultat | string | The configured encryption key stored in Data/Persistent/EncryptionKey |
protected getPasswordHashingStrategyAndIdentifier ( string $strategyIdentifier = 'default' ) : array |
||
$strategyIdentifier | string | |
Résultat | array |
public injectSettings ( array $settings ) : void | ||
$settings | array | Settings container of the current package |
Résultat | void |
public validateAndStripHmac ( string $string ) : string | ||
$string | string | The string with the HMAC appended (in the format 'string |
Résultat | string | the original string without the HMAC, if validation was successful |
public validatePassword ( string $password, string $hashedPasswordAndSalt ) : boolean | ||
$password | string | The cleartext password |
$hashedPasswordAndSalt | string | The hashed password with salt (if used) and an optional strategy identifier |
Résultat | boolean | TRUE if the given password matches the hashed password |
protected StringFrontend,Neos\Cache\Frontend $cache | ||
Résultat |
protected string $encryptionKey | ||
Résultat | string |
protected ObjectManagerInterface,Neos\Flow\ObjectManagement $objectManager | ||
Résultat | Neos\Flow\ObjectManagement\ObjectManagerInterface |
protected array $passwordHashingStrategies | ||
Résultat | array |