What couse this error?? Fatal error: Call to undefined function mcrypt_encrypt()

Posted by Jin Yong on Stack Overflow See other posts from Stack Overflow or by Jin Yong
Published on 2010-04-09T00:49:39Z Indexed on 2010/04/09 0:53 UTC
Read the original article Hit count: 672

Filed under:

Does Anyone know whcy this error message display (Call to undefined function mcrypt_encrypt() ) when I run the following code below? Am I missing some steps perhaps any setting in PHP I have to do before this code can work?

$key = 'password to (en/de)crypt';
$string = 'string to be encrypted';

$test = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, md5($key), $string, MCRYPT_MODE_CBC, md5(md5($key)));

© Stack Overflow or respective owner

Related posts about php