Download the PHP package mindplay/blowfish without Composer
On this page you can find all versions of the php package mindplay/blowfish. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download mindplay/blowfish
More information about mindplay/blowfish
Files in mindplay/blowfish
Download mindplay/blowfish
More information about mindplay/blowfish
Files in mindplay/blowfish
Vendor mindplay
Package blowfish
Short Description Wrapper around the Blowfish algorithm (for use in password encryption, etc.)
License LGPL-3.0+
Package blowfish
Short Description Wrapper around the Blowfish algorithm (for use in password encryption, etc.)
License LGPL-3.0+
Please rate this library. Is it a good library?
Informations about the package blowfish
mindplay/blowfish
I want Blowfish password encryption, which is currently the best available.
I also want:
- Strong, fast entropy: mcrypt when available, fall back to dev/urandom or
mt_rand()
- Variable cost: prioritize speed vs cipher strength depending on your needs
- Ease of use and a small, simple dependency
I do not want a large, complicated password encryption framework - I feel quite comfortable having a hard dependency on a public API consisting of two methods:
public function hash($value): string;
public function check($value, $hash): bool;
Replacing this with something else in the future would be trivial.
You need php version 5.3.7 or newer for working Blowfish implementation - prior versions had a broken Blowfish implementation.
Usage
Trivial:
All versions of blowfish with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.7
The package mindplay/blowfish contains the following files
Loading the files please wait ....