PHP 8.3.31
Preview: AbstractHasher.php Size: 763 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Hashing/AbstractHasher.php

<?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(#[\SensitiveParameter] $value, $hashedValue, array $options = [])
    {
        if (is_null($hashedValue) || strlen($hashedValue) === 0) {
            return false;
        }

        return password_verify($value, $hashedValue);
    }
}

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
763 B lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
1.22 KB lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
5.77 KB lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
3.75 KB lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
821 B lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
2.90 KB lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
747 B lrw-rw-rw- 2025-09-17 06:53:00
Edit Download
1.05 KB lrw-rw-rw- 2025-09-17 06:53:00
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).