$crypt = new Crypt_RSA();
$crypt->setPassword('123456789');
$key = $crypt->createKey();
But I got an exception during the createKey() :
Fuel\Core\PhpErrorException [ Notice ]:
Use of undefined constant CRYPT_DES_MODE_CBC - assumed 'CRYPT_DES_MODE_CBC'
This is an exception thrown in TripleDES. When I try to encrypt something with TripleDES, I got the same exception.
Thanks for help me.