Changeset 35600
- Timestamp:
- 11/10/2015 11:59:15 AM (9 years ago)
- Location:
- trunk/src/wp-includes/random_compat
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/random_compat/random.php
r35587 r35600 111 111 PHP_VERSION_ID >= 50300 112 112 ) || 113 // Windows with PHP >= 5. 3.4114 PHP_VERSION_ID >= 50401 // Modification from upstream, see #34409113 // Windows with PHP >= 5.4.1 114 PHP_VERSION_ID >= 50401 115 115 ) 116 116 ) { -
trunk/src/wp-includes/random_compat/random_bytes_com_dotnet.php
r35365 r35600 73 73 */ 74 74 throw new Exception( 75 ' PHP failed to generate random data.'75 'Could not gather sufficient random data' 76 76 ); 77 77 } -
trunk/src/wp-includes/random_compat/random_bytes_dev_urandom.php
r35365 r35600 133 133 */ 134 134 throw new Exception( 135 ' PHP failed to generate random data.'135 'Error reading from source device' 136 136 ); 137 137 } -
trunk/src/wp-includes/random_compat/random_bytes_libsodium.php
r35365 r35600 80 80 */ 81 81 throw new Exception( 82 ' PHP failed to generate random data.'82 'Could not gather sufficient random data' 83 83 ); 84 84 } -
trunk/src/wp-includes/random_compat/random_bytes_mcrypt.php
r35365 r35600 68 68 */ 69 69 throw new Exception( 70 ' PHP failed to generate random data.'70 'Could not gather sufficient random data' 71 71 ); 72 72 } -
trunk/src/wp-includes/random_compat/random_bytes_openssl.php
r35365 r35600 72 72 */ 73 73 throw new Exception( 74 ' PHP failed to generate random data.'74 'Could not gather sufficient random data' 75 75 ); 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.