Files
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
..
2017-12-01 22:05:35 +01:00
2015-08-19 21:58:34 +03:00
2017-12-01 23:29:15 +01:00

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