Ticket #56304: #56304.patch
File #56304.patch, 528 bytes (added by , 2 years ago) |
---|
-
src/wp-includes/random_compat/random_bytes_mcrypt.php
57 57 } 58 58 59 59 /** @var string|bool $buf */ 60 $buf = @mcrypt_create_iv((int) $bytes, (int) MCRYPT_DEV_URANDOM);60 $buf = random_bytes((int) $bytes); 61 61 if ( 62 62 is_string($buf) 63 63 &&