Download the PHP package driehle/php-crypt-md5 without Composer
On this page you can find all versions of the php package driehle/php-crypt-md5. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download driehle/php-crypt-md5
More information about driehle/php-crypt-md5
Files in driehle/php-crypt-md5
Package php-crypt-md5
Short Description A pure PHP implementation of an MD5-hashsum-based implementation of the crypt routine, which can be used to generate hashs for Apache's passwd files
License GPL-3.0+ LGPL-3.0+
Homepage https://github.com/driehle/php-crypt-md5
Informations about the package php-crypt-md5
PHP crypt-md5
A pure PHP implementation of an MD5-hashsum-based implementation of the crypt routine, which can be used to generate hashs for Apache's passwd files.
Description
unix_md5_crypt() provides a crypt()-compatible interface to the rather new MD5-based crypt() function found in modern operating systems. It's based on the implementation found on FreeBSD 2.2.[56]-RELEASE and contains the following license in it:
"THE BEER-WARE LICENSE" (Revision 42):
<[email protected]> wrote this file. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you think
this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
apache_md5_crypt() provides a function compatible with Apache's .htpasswd files. This was contributed by Bryan Hart ([email protected]).
Installation
The latest version of this package can be installed via Composer:
All available versions can be found under https://packagist.org/packages/driehle/php-crypt-md5.
Usage
Authors
- Dennis Riehle [email protected]
- Fabian Steiner [email protected] (thanks for bugfixing!)
- Jörg Reinholz http://www.fastix.de/ (thanks for bugfixing!)
Other implementations this one is based on:
- perl's Crypt::PasswdMD5 by Luis Munoz ([email protected])
- phyton's md5crypt.py by Michal Wallace http://www.sabren.com/
- /usr/src/libcrypt/crypt.c from FreeBSD 2.2.5-RELEASE