Home > database >  How to search on the encrypted data
How to search on the encrypted data

Time:10-21

Have sensitive data in mysql and es, need encryption, but can't search (including fuzzy query), how the whole, at the code level, have a good solution, or other solution

CodePudding user response:

That is a good question.

CodePudding user response:

If it's all sensitive data, you should not directly provide services;

Should encapsulate a layer interface, does not return a detailed data, only to return to the primary key id, or index es id id + data, query the detail data by other interface,
  • Related