首页 >函数列表 >openssl_random_pseudo_bytes

openssl_random_pseudo_bytes

openssl_random_pseudo_bytes

(PHP 5 >= 5.3.0)

openssl_random_pseudo_bytesGenerate a pseudo-random string of bytes

说明

string openssl_random_pseudo_bytes ( int $length [, bool &$crypto_strong ] )

Generates a string of pseudo-random bytes, with the number of bytes determined by the length parameter.

It also indicates if a cryptographically strong algorithm was used to produce the pseudo-random bytes, and does this via the optional crypto_strong parameter. It's rare for this to be FALSE, but some systems may be broken or old.

参数

length

The length of the desired string of bytes. Must be a positive integer. PHP will try to cast this parameter to a non-null integer to use it.

crypto_strong

If passed into the function, this will hold a boolean value that determines if the algorithm used was "cryptographically strong", e.g., safe for usage with GPG, passwords, etc. TRUE if it did, otherwise FALSE

返回值

Returns the generated string of bytes on success, 或者在失败时返回 FALSE.

范例

Example #1 openssl_random_pseudo_bytes() example

<?php
for ($i = -1$i <= 4$i++) {
    
$bytes openssl_random_pseudo_bytes($i$cstrong);
    
$hex   bin2hex($bytes);

    echo 
"Lengths: Bytes: $i and Hex: " strlen($hex) . PHP_EOL;
    
var_dump($hex);
    
var_dump($cstrong);
    echo 
PHP_EOL;
}
?>

以上例程的输出类似于:

Lengths: Bytes: -1 and Hex: 0
string(0) ""
NULL

Lengths: Bytes: 0 and Hex: 0
string(0) ""
NULL

Lengths: Bytes: 1 and Hex: 2
string(2) "42"
bool(true)

Lengths: Bytes: 2 and Hex: 4
string(4) "dc6e"
bool(true)

Lengths: Bytes: 3 and Hex: 6
string(6) "288591"
bool(true)

Lengths: Bytes: 4 and Hex: 8
string(8) "ab86d144"
bool(true)

参见


  • openssl_cipher_iv_length
  • openssl_csr_export
  • openssl_csr_export_to_file
  • openssl_csr_get_public_key
  • openssl_csr_get_subject
  • openssl_csr_new
  • openssl_csr_sign
  • openssl_decrypt
  • openssl_dh_compute_key
  • openssl_digest
  • openssl_encrypt
  • openssl_error_string
  • openssl_free_key
  • openssl_get_cipher_methods
  • openssl_get_md_methods
  • openssl_get_privatekey
  • openssl_get_publickey
  • openssl_open
  • openssl_pkcs12_export
  • openssl_pkcs12_export_to_file
  • openssl_pkcs12_read
  • openssl_pkcs7_decrypt
  • openssl_pkcs7_encrypt
  • openssl_pkcs7_sign
  • openssl_pkcs7_verify
  • openssl_pkey_export
  • openssl_pkey_export_to_file
  • openssl_pkey_free
  • openssl_pkey_get_details
  • openssl_pkey_get_private
  • openssl_pkey_get_public
  • openssl_pkey_new
  • openssl_private_decrypt
  • openssl_private_encrypt
  • openssl_public_decrypt
  • openssl_public_encrypt
  • openssl_random_pseudo_bytes
  • openssl_seal
  • openssl_sign
  • openssl_verify
  • openssl_x509_checkpurpose
  • openssl_x509_check_private_key
  • openssl_x509_export
  • openssl_x509_export_to_file
  • openssl_x509_free
  • openssl_x509_parse
  • openssl_x509_read
  • PHP MySQL HTML CSS JavaScript MSSQL AJAX .NET JSP Linux Mac ASP 服务器 SQL jQuery C# C++ java Android IOS oracle MongoDB SQLite wamp 交通频道