![]() |
Sergey Kornilov admin 5/8/2020 |
You can find more info in this article https://xlinesoft.com/phprunner/docs/encryption.htm or you will need to study PHPRunner source code. |
L
|
lcslouis author 5/8/2020 |
The issue of why I don't use database encryption is that in the program it says max supported is aes 128 |
![]() |
Sergey Kornilov admin 5/8/2020 |
Got it. Check files ciphereraes.php and ciphereres.php in source\classes folder of PHPRunner. |
L
|
lcslouis author 5/16/2020 |
I have been looking at the files and the biggest issue I see and biggest headache is the program isn't using any padding. bin2hex(openssl_encrypt($source, $this->SSLMethod, $this->key, OPENSSL_RAW_DATA | OPENSSL_NO_PADDING, $this->INITIALISATION_VECTOR)); |
![]() |
Sergey Kornilov admin 5/18/2020 |
While I don't the answer for you here is the openssl_encrypt function documentation that should help: |