App\Services\Cipher\SALTED2SHA256::encrypt PHP Method

encrypt() public method

Default SHA256 encryption method for Authme
See also: http://pastebin.com/1wy9g2HT
public encrypt ( $raw_passwd, $salt = "" )
    public function encrypt($raw_passwd, $salt = "")
    {
        $encrypt = hash('sha256', hash('sha256', $raw_passwd) . $salt);
        return $encrypt;
    }
SALTED2SHA256