Sorcerer's IsleCode cfPassphrase / files

 1cfPassphrase v0.1
 2
 3
 4DESCRIPTION
 5-----------
 6
 7cfPassphrase is a library for securely hashing and checking passphrases using
 8proven industry standard algorithms. It aims to provide a simple and common 
 9implementation that can be used in any CFML engine.
10
11Further details of what it provides can be found on the wiki:
12https://docs.sorcerersisle.com/cfpassphrase
13
14
15STATUS
16------
17
18Version: 0.1 
19Released: 2015-02-22
20
21To check latest release, visit https://www.sorcerersisle.com/software/cfpassphrase
22
23
24REQUIREMENTS
25------------
26
27cfPassphrase is intended to run on any CFML engine.
28
29At present, it has been tested with the latest stable releases, namely: 
30
31* ColdFusion 11 (11,0,04,293328)
32* ColdFusion 10 (10,0,15,292620)
33* ColdFusion 9  (9,0,1,274733)
34* OpenBD 3.2    (nightly 2015-02-22)
35* OpenBD 3.1    (nightly 2013-03-12)
36* Railo 4.2     (4.2.2.004)
37* Lucee 4.5     (4.5.1.000)
38
39If you have issues getting it to work, please log them at:
40
41  https://github.com/boughtonp/cfpassphrase/issues
42
43
44LICENSING
45---------
46
47cfPassphrase is a project created and maintained by Peter Boughton,
48licensed under the LGPLv3 (read license.txt for details).
49
50The project gratefully makes use of the third-party software detailed below,
51each available individually under their respective licenses.
52
53jBCrypt v0.4 (mindrot.org/projects/jBCrypt)
54* Source: http://mindrot.org/files/jBCrypt/
55* License: ISC/BSD (http://mindrot.org/files/jBCrypt/LICENSE)
56* Files: src/org/mindrot/jbcrypt/BCrypt.java
57
58Java PBKDF2 (crackstation.net/hashing-security.htm)
59* Source: http://crackstation.net/hashing-security.htm
60* License: Public Domain
61* Files: src/crackstation/PBKDF2/PasswordHash.java
62
63Java SCrypt (github.com/wg/scrypt)
64* Source: https://github.com/wg/scrypt
65* License: Apache v2.0 (http://www.apache.org/licenses/LICENSE-2.0) 
66* Files: src/com/lambdaworks/*
67
68
69/eof