1.20.x drupal.inc drupal_hash_base64($data)

Calculates a base-64 encoded, URL-safe sha-256 hash.

Deprecated

since 1.0.0

See also

backdrop_hash_base64()

Related topics

File

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

Code

function drupal_hash_base64($data) {
  return backdrop_hash_base64($data);
}