mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
29 lines
No EOL
938 B
PHP
29 lines
No EOL
938 B
PHP
<?php
|
|
|
|
use Illuminate\Hashing\HasherInterface;
|
|
|
|
class IpsHasher implements HasherInterface {
|
|
public function make($value, array $options = array()) {
|
|
return md5(md5($options['salt']) . md5(static::ips_sanitize($value)));
|
|
}
|
|
|
|
public function check($value, $hashedValue, array $options = array()) {
|
|
return static::make($value, ['salt' => $options['salt']]) === $hashedValue;
|
|
}
|
|
|
|
public function needsRehash($hashedValue, array $options = array()) {
|
|
return false;
|
|
}
|
|
|
|
static public function ips_sanitize( $value ) {
|
|
$value = str_replace('&', '&', $value);
|
|
$value = str_replace('\\', '\', $value);
|
|
$value = str_replace('!', '!', $value);
|
|
$value = str_replace('$', '$', $value);
|
|
$value = str_replace('"', '"', $value);
|
|
$value = str_replace('<', '<', $value);
|
|
$value = str_replace('>', '>', $value);
|
|
$value = str_replace('\'', ''', $value);
|
|
return $value;
|
|
}
|
|
} |