1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-31 19:31:47 +02:00

* Support for password hashes using text, md5 and hash, fix #77.

This commit is contained in:
Mikael Roos
2015-07-25 22:58:04 +02:00
parent aaf34fd0b5
commit 555c3f0185
6 changed files with 75 additions and 39 deletions

View File

@@ -51,12 +51,19 @@ return array(
* Passwords are only used together with the options for remote download
* and aliasing.
*
* Create a passwords like this, depending on the type used:
* text: 'my_password'
* md5: md5('my_password')
* hash: password_hash('my_password', PASSWORD_DEFAULT)
*
* Default values.
* password: false // as in do not use password
* password_always: false // do not always require password,
* password_always: false // do not always require password,
* password: false // as in do not use password
* password_type: 'text' // use plain password, not encoded,
*/
//'password' => false, // "secret-password",
//'password_always' => false, // always require password,
//'password' => false, // "secret-password",
//'password_type' => 'text', // supports 'text', 'md5', 'hash',