-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLICENSE
38 lines (26 loc) · 1.26 KB
/
LICENSE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Copyright (c) 2012 Thiago Coutinho
Written by
- Thiago Coutinho <[email protected]>
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
Many thanks to
- Ricardo Perez <[email protected]>
Version: 1.0 stable
Last edit: Tue, 13 September 2012 17:05:28 -0300 GMT
(after 7 years of phyton version... \o/ happy Birthday \o/)
USAGE
cryptedpassword = CramMd5::unix_md5_crypt (password [, salt [, magicstring ])
apachepassword = CramMd5::apache_md5_crypt (password [, salt])
DESCRIPTION
unix_md5_crypt() provides a crypt()-compatible interface to the
rather old MD5-based crypt() function found in modern operating systems
using old and solid libs.
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 based on the other descriptions. 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.
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.