Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

rs_password_hash()

Description

ResourceSpace password hashing

Parameters

ColumnTypeDefaultDescription
$password string Password

Return

string|false Password hash or false on failure

Location

include/login_functions.php lines 312 to 322

Definition

 
function rs_password_hash(string $password)
    {
    
$phi get_password_hash_info();
    
$algo $phi['algo'];
    
$options $phi['options'];

    
// Pepper password with a known (by the application) secret.
    
$hmac hash_hmac('sha256'$password$GLOBALS['scramble_key']);

    return 
password_hash($hmac$algo$options);
    }

This article was last updated 17th November 2024 15:05 Europe/London time based on the source file dated 7th November 2024 17:40 Europe/London time.