public static function Drupal_Crypt_Blowfish::decrypt in Web Service Clients 7
Same name and namespace in other branches
- 6.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
- 6 backends/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
- 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.inc \Drupal_Crypt_Blowfish::decrypt()
- 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 backends/
clients_drupal/ crypt_blowfish/ crypt_blowfish.module - Implementation of hook_clients_drupal_decrypt()
File
- backends/
clients_drupal/ crypt_blowfish/ crypt_blowfish.inc, line 17 - Wrapper for PEAR Crypt Blowfish
Class
Code
public static function decrypt($encrypted) {
$bf = self::blowfish();
return trim($bf
->decrypt($encrypted));
// that was fun to debug
}