webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Hashing
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AbstractHasher.php
0.723KB
edt
ren
Argon2IdHasher.php
1.193KB
edt
ren
ArgonHasher.php
5.59KB
edt
ren
BcryptHasher.php
3.568KB
edt
ren
HashManager.php
2.532KB
edt
ren
HashServiceProvider.php
0.729KB
edt
ren
LICENSE.md
1.05KB
edt
ren
composer.json
0.802KB
edt
ren
<?php namespace Illuminate\Hashing; abstract class AbstractHasher { /** * Get information about the given hashed value. * * @param string $hashedValue * @return array */ public function info($hashedValue) { return password_get_info($hashedValue); } /** * Check the given plain value against a hash. * * @param string $value * @param string|null $hashedValue * @param array $options * @return bool */ public function check($value, $hashedValue, array $options = []) { if (is_null($hashedValue) || strlen($hashedValue) === 0) { return false; } return password_verify($value, $hashedValue); } }