CodeIgniter Forums
AES in linux host - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: AES in linux host (/showthread.php?tid=79676)



AES in linux host - omid_student - 07-18-2021

Hi
I have to use AES 128 CBC in my project for each new user that wants to register in my app
In the app, the user encrypt data and send it to the host
In host, I have to decrypt it and check data is valid or not
My main question is:
For 20 requests at the moment are bad for CPU?


RE: AES in linux host - InsiteFX - 07-18-2021

I would not worry about it unless you start to see a cpu performace hit on it.

Just keep an eye on it. You may want to look into using JavaScript async.


RE: AES in linux host - omid_student - 07-18-2021

(07-18-2021, 02:47 AM)InsiteFX Wrote: I would not worry about it unless you start to see a cpu performace hit on it.

Just keep an eye on it. You may want to look into using JavaScript async.


Of course, but that is important using AES is correct or not in cpanel?


RE: AES in linux host - InsiteFX - 07-19-2021

This may help you.

How do you Encrypt and Decrypt a PHP String?


RE: AES in linux host - omid_student - 07-19-2021

(07-19-2021, 02:26 AM)InsiteFX Wrote: This may help you.

How do you Encrypt and Decrypt a PHP String?

Thank you but I want to know AES decrypt is bad for each registering u


RE: AES in linux host - Escuela de Letras - 07-19-2021

Don't worry, is normal.