1 drupal.inc drupal_random_bytes($count)

Returns a string of highly randomized bytes (over the full 8-bit range).

Deprecated

since 1.0.0

See also

backdrop_random_bytes()

Related topics

File

core/includes/drupal.inc, line 286
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_random_bytes($count) {
  return backdrop_random_bytes($count);
}