I am using WAMP 2.4.4. To encrypt a String I used the "MyEncryption" class, but the error is:
Call to undefined function openssl_public_encrypt()
Is there any special library that i must add before using openssl_public_encrypt()
class MyEncryption
{
public $pubkey = '...public key here...';
public $privkey = '...private key here...';
function encrypt($data)
{
if (openssl_public_encrypt($data, $encrypted, $this->pubkey))
$data = base64_encode($encrypted);
else
throw new Exception('Unable to encrypt data. Perhaps it is bigger than the key size?');
return $data;
}
}
$url = new MyEncryption();
$d = "Hello World";
$enc = $url->encrypt($d);
echo "Encryption is: ", $enc;
Yes there is, it is called OpenSSL and you find it documented in the PHP manual here:
Depending on your operating system flavor the package is called
php-openssl
and all you need to do is to install it. Then it should be automatically available in PHP.This is similar in the WAMP UI, which you can use to enable php_openssl as well. Only in case you're concerned for the commandline you need to do more work, see the related question: