-1

I want to encrypt mysql database so when someone open phpmyadmin data is encrypted.I want to do without changing code at application layer. I already try key ring plugin but it's not work with table or column level

It prog
  • 1
  • 1

1 Answers1

3

This is an absolutely impossible objective.

phpmyadmin accesses the data in the database using exactly the same mechanisms as your application code -- nothing more, nothing less. If the data were encrypted from phpmyadmin's perspective, it would also be encrypted from the application's perspective, and the application in its current state would be unable to use it.

Michael - sqlbot
  • 169,571
  • 25
  • 353
  • 427