Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robbestad/securehash
Secure hash class for PHP
https://github.com/robbestad/securehash
Last synced: about 1 month ago
JSON representation
Secure hash class for PHP
- Host: GitHub
- URL: https://github.com/robbestad/securehash
- Owner: robbestad
- Created: 2012-10-13T13:45:14.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-26T15:51:19.000Z (about 11 years ago)
- Last Synced: 2024-04-13T17:11:01.452Z (9 months ago)
- Language: PHP
- Size: 156 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SecureHash
==========Secure hash class for PHP
Description:
==========
SecureHash creates a hash based on blowfish.
This combination creates a password hash that is is virtually unfeasible
to crack without ludicrous amount of funds or hardware.
The password simply cannot be decrypted without knowing the password, salt and hash.Usage:
==========
Include the class and create the hash like so:$securePassword=new secureHash();
$hash=$securePassword->returnHash($user_submitted_password);Verification is as simple as calling the class
and passing the submitted password and the hash
if the hash matches, the function returns true$verify=$securePassword->verifyHash($user_submitted_password,$hash);