├── .gitignore ├── README.md ├── config └── bcrypt.php └── libraries └── Bcrypt.php /.gitignore: -------------------------------------------------------------------------------- 1 | # OS generated files # 2 | .DS_Store* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwightwatson/codeigniter-bcrypt/HEAD/README.md -------------------------------------------------------------------------------- /config/bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwightwatson/codeigniter-bcrypt/HEAD/config/bcrypt.php -------------------------------------------------------------------------------- /libraries/Bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwightwatson/codeigniter-bcrypt/HEAD/libraries/Bcrypt.php --------------------------------------------------------------------------------