Details
-
New Feature
-
Status: Open (View Workflow)
-
Critical
-
Resolution: Unresolved
-
None
-
None
-
None
Description
Add options to mysql_real_connect to encrypt and decrypt data before persisting or retrieving.
For example:
mysql_real_connect(
|
conn, // Connection |
"mariadb.example.net", // Host |
..... // other args |
true, // encrypt (false by default) |
"random salt here", //salt |
"AES-256" // encryption algorithm |
)
|