Static Public Member Functions | |
static | factory ($method='mcrypt') |
Definition at line 35 of file Crypt.php.
static factory | ( | $ | method = 'mcrypt' |
) | [static] |
Factory method to return requested cipher logic
string | $method |
Definition at line 43 of file Crypt.php.
00044 { 00045 $uc = str_replace(' ','_',ucwords(str_replace('_',' ',$method))); 00046 $className = 'Varien_Crypt_'.$uc; 00047 return new $className; 00048 }