Initial Commit. Functional library, no unit tests
parents
Showing
LICENSE.txt
0 → 100755
README.md
0 → 100755
composer.json
0 → 100644
| { | |||
| "name": "moderndeveloperllc/scrypt", | |||
| "description": "Class to generate scrypt password hashes that are compatible with the wg/scrypt Java implementation", | |||
| "require": { | |||
| "php": ">=5.3.23", | |||
| "zendframework/zend-crypt": "2.*", | |||
| "zendframework/zend-math": "2.*" | |||
| }, | |||
| "suggest": { | |||
| "ext-scrypt": "This module will be excruciatingly slow without it." | |||
| }, | |||
| "authors": [ | |||
| { | |||
| "name": "Mark Garrett", | |||
| "email": "mark@moderndeveloperllc.com" | |||
| } | |||
| ], | |||
| "keywords": [ | |||
| "scrypt", | |||
| "security", | |||
| "hashing", | |||
| "password" | |||
| ], | |||
| "autoload": { | |||
| "psr-4": { | |||
| "ModDev\\Password\\": "library/" | |||
| } | |||
| }, | |||
| "type": "library", | |||
| "license": "BSD-3", | |||
| "homepage": "https://bitbucket.org/moderndeveloperllc/scrypt" | |||
| } |
library/Scrypt.php
0 → 100644
Please
register
or
sign in
to comment