mirror of
https://github.com/Relintai/crystal_cms_rcpp_fw.git
synced 2025-04-22 20:41:18 +02:00
18 lines
291 B
PHP
18 lines
291 B
PHP
<?php
|
|
|
|
/**
|
|
* This will be changed to a db based per user unique salt
|
|
*/
|
|
|
|
namespace App\Security\Impl;
|
|
|
|
use \App\Security\ISecurity;
|
|
|
|
class Hasher implements ISecurity
|
|
{
|
|
public function hashPassword($password)
|
|
{
|
|
return hash('sha256', "ACOUÉAfÖZ+'RP(ÖRH" + $password + "FAfqawf");
|
|
}
|
|
}
|