Java Play Encrypt Database Password

一曲冷凌霜 提交于 2019-12-02 10:11:22

You shouldn't need to encrypt anything inside your own system. Just make sure your server is secure.

Since you will need to let your application access the password, an attacker who has access to your system would be able to get to your password anyway.

But never ever check your passwords into git (or subversion or whatever)!

Instead what you should do is this:

  1. Add this line to your application.conf:

    include "secure.conf"
    
  2. Create the secure.conf in your conf-folder.And save all your credentials in this file.

  3. Add secure.conf to your .gitignore, so it doesn't go into your Git.
  4. Manually add and update the secure.conf-file on your server.

Is there any other way to store password in encrypted format other than a plugin.

Well you could create your own formula for encrypting and decrypting the password. For example you can store the password in character array, make characters into bytes, do something to those bytes and save it into a file. For decrypting you just do all that stuff backwards.

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