mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-29 15:26:09 +00:00
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.
Plugin that adds functionality to change the email account password (PostfixAdmin).