MySQL encryption library similar to SQLCipher

I am working on encrypting some database fields. Of course, by encrypting, I lose some search features. I found this library called SQLCipher , which handles database-level encryption, but for SQLite. Is there something similar for MySQL?

+4
source share
2 answers

Have you looked at zNcrypt for MySQL ? May be useful for you.

+3
source

Source: https://habr.com/ru/post/1314814/


All Articles