/
home
/
techb158
/
exp.abdallabala.com
/
vendor
/
illuminate
/
contracts
/
Hashing
/
/home/techb158/exp.abdallabala.com/vendor/illuminate/contracts/Hashing
mkdir
upload
Name
Size
Mode
Actions
Hasher.php
949
0644
edit
dl
rm
Edit:
/home/techb158/exp.abdallabala.com/vendor/illuminate/contracts/Hashing/Hasher.php
(949B)
<?php namespace Illuminate\Contracts\Hashing; interface Hasher { /** * Get information about the given hashed value. * * @param string $hashedValue * @return array */ public function info($hashedValue); /** * Hash the given value. * * @param string $value * @param array $options * @return string */ public function make($value, array $options = []); /** * Check the given plain value against a hash. * * @param string $value * @param string $hashedValue * @param array $options * @return bool */ public function check($value, $hashedValue, array $options = []); /** * Check if the given hash has been hashed using the given options. * * @param string $hashedValue * @param array $options * @return bool */ public function needsRehash($hashedValue, array $options = []); }
Save
cmd:
run