Ok, so I've encrypted my data now where do I hide the key?

不问归期 提交于 2019-12-04 19:14:00

问题


I have a database that contains sensitive information. I can encrypt / decrypt the data on the read write operations. The problem is that I need to store the key in the application. If someone has hacked their way in such they have access to the database then they can also grab the application (java) decomplie it and pull the key.

This seems like a speed bump at best. What other solutions are available?


回答1:


The only thing you can do is make it difficult to extract the key from your application. You can't make it impossible. If you give someone a box with contents that you're trying to protect, you have to give them the key if you want them to be able to access the contents. Once you give them the key they can do whatever they want… if they take the trouble of finding the key.

This is a case of Bob and Eve being the same person, you want to give Bob access but stop Eve from seeing it.

This is DRM, it doesn't work.




回答2:


I am assuming you have some way to verify the credentials of the user before allowing them to access the database?

Usually the architecture for these kinds of things is as follows:

  • Database
  • Server
  • Client

The Client connects to the Server, which then connects to the Database. The Server makes sure the Client authenticates correctly before allowing them access to sensitive information. The decryption key is stored only on the server. Noone should have access to the server, and especially the file that contains the key. This way the clients do not have any encryption/decryption they have to do, and do not have to store any keys.




回答3:


Read up on keystores.




回答4:


Require the user to enter a passphrase to access their data. Burying the key in the code is security by obscurity.




回答5:


Store the keys in a CSP container. Consider the Java CSP here .

This is IMO the safest way possible. But you can also consider storing the key in a file which is protected by the operating system using some kind of ACL.




回答6:


require the user to log in using a strong password; use the password as the key for a symmetric encryption algorithm to decrypt the asymmetric database key

keep the db key in secure memory while the application is running (if that is an option)




回答7:


Encrypt the key (using DPAPI), put it in a file, put an ACL on that file etc...



来源:https://stackoverflow.com/questions/469267/ok-so-ive-encrypted-my-data-now-where-do-i-hide-the-key

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!