I'm developing a medical app for a school project. So, user's data must be encrypted to keep the medical confidentiality. I'd like to encrypt fields of my database 'users' with an asymetric system : RSA, which is imposed by my teacher.
I thought that the Crypt class could be configured to use RSA.
So, do I have to use the Crypt_RSA class directly ?
If you want to use PHPSecLib's RSA implementation, you're best of to create your own crypter class, to encapsulate the native class. You can use our Crypt class as an example.