You are here

public static function Drupal_Crypt_Blowfish::decrypt in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 backends/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
  2. 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
  3. 7 backends/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
  4. 7.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
1 call to Drupal_Crypt_Blowfish::decrypt()
crypt_blowfish_clients_drupal_decrypt in connections/clients_drupal/crypt_blowfish/crypt_blowfish.module
Implementation of hook_clients_drupal_decrypt()

File

connections/clients_drupal/crypt_blowfish/crypt_blowfish.inc, line 17
Wrapper for PEAR Crypt Blowfish

Class

Drupal_Crypt_Blowfish

Code

public static function decrypt($encrypted) {
  $bf = self::blowfish();
  return trim($bf
    ->decrypt($encrypted));

  // that was fun to debug
}