mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
15 lines
194 B
PHP
15 lines
194 B
PHP
--TEST--
|
|
Test normal operation of random_bytes()
|
|
--FILE--
|
|
<?php
|
|
//-=-=-=-
|
|
|
|
var_dump(strlen(bin2hex(random_bytes(16))));
|
|
|
|
var_dump(is_string(random_bytes(10)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(32)
|
|
bool(true)
|