snappymail/plugins/postfixadmin-change-password
Paul Borges 4890249b5a
Use random_bytes if available in postfix plugin
The [PHP `str_shuffle()`](http://php.net/manual/en/function.str-shuffle.php) documentation states:

```
This function does not generate cryptographically secure values, and should not be used for cryptographic purposes.
```

This change makes use of [`random_bytes()`](http://php.net/manual/en/function.random-bytes.php) if it's available and falls back to the old (probably ok) `str_shuffle()` implementation.
2019-02-06 15:06:09 -05:00
..
ChangePasswordPostfixAdminDriver.php Use random_bytes if available in postfix plugin 2019-02-06 15:06:09 -05:00
index.php Added option to select PostgreSQL 2017-12-01 22:05:35 +01:00
LICENSE Contacts suggestions example plugin 2015-08-19 21:58:34 +03:00
md5crypt.php Added "postfixadmin-change-password" plugin (#251) 2014-07-23 00:50:21 +04:00
README Added "postfixadmin-change-password" plugin (#251) 2014-07-23 00:50:21 +04:00
VERSION Bump Version to 1.3 2017-12-01 23:29:15 +01:00

Plugin that adds functionality to change the email account password (PostfixAdmin).