Linux 两种密码加密方式?
我正在寻找一种方法来加密我的 perl 脚本的密码。
密码存储在一个名为 config.xml 的 XML 文件中,
我之前曾尝试过使用各种 Perl 模块来加密密码。
但我一直遇到同样的问题,解密密码。
问题是,一旦密码被加密,我就再也无法访问它,就像它与crypt
一样。或者另一个问题是我必须在其他脚本中包含解密密码的函数。因此,首先就让加密变得毫无意义。
所以我开始思考,如果我使用 Linux 应用程序而不是 perl 模块会怎样。
所以我的问题几乎可以归结为这个,
是否有任何我可以为 Debian/Ubuntu 安装的应用程序,它会给我两个密码加密,我可以在我的 perl 脚本中使用?
我必须有办法解密密码,因为与服务器的 SSH 连接需要该密码。
I am looking for a way to encrypt the password for my perl script.
The password is stored in an XML file called config.xml
I have tried before to come up with a way to encrypt the password using various perl modules.
But I keep running into the same problem, decrypting the password.
The problem is either once the password is encrypted I can never get to it again, like it works with crypt
. Or the other problem being I have to include in the other script the function to decrypt the password. Therefore making the encrpytion pointless in the first place.
So I got to thinking, what if I use a Linux application instead of a perl module.
So my question pretty much boils down to this,
Is there any application I can install for Debian/Ubuntu that will give me two password encryption that I can use in my perl script?
I must have a way to decrypt the password as it is needed for the SSH connection to the server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ssh-keys 而不是密码。
Use ssh-keys instead of a password.