Function __global->_phpbb_hash_crypt
Definitions
sources/forum/phpbb3.php
- phpBB: The crypt function/replacement.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $password | string | No | No | required parameter | N/A | N/A | To encode |
| $setting | string | No | No | required parameter | N/A | N/A | Encode settings in special format |
Returns
- The encoded output (false: error)
- Type: ~string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* phpBB: The crypt function/replacement.
*
* @param string $password To encode
* @param string $setting Encode settings in special format
* @return ~string The encoded output (false: error)
*/
function _phpbb_hash_crypt(string $password, string $setting)
* phpBB: The crypt function/replacement.
*
* @param string $password To encode
* @param string $setting Encode settings in special format
* @return ~string The encoded output (false: error)
*/
function _phpbb_hash_crypt(string $password, string $setting)

