我可以使用 ssh 公钥来解密文件吗?
我正在尝试找到一种方法来解密“原始”EC2 实例上的加密文件。我使用的这些 EC 实例 (Ubuntu Lucid) 仅保存我的 AWS 创建的公共 ssh 密钥。如果可以使用它来解密文件,我可以向它提供加密文件(例如保存我的 subversion 存储库密码的 bash 脚本)。
那么,我的问题是,我可以使用 ssh 密钥来加密/解密文件吗?
I'm trying to find a way to decrypt an encrypted file on a 'virgin' EC2-instance. These EC-instances I use (Ubuntu Lucid) only hold my AWS-created public ssh-key. If can use this to decrypt a file, I can feed it encrypted files (for example a bash-script holding a password to my subversion-repository).
So, my question, can I use my ssh-key to encrypt/decrypt a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
文件:
导出公钥(以防您没有/丢失):
用公钥加密文件(任何人都可以拥有此密钥):
用私钥解密文件(只有您应该拥有私钥)
:解码后的消息:
The file:
Export public key (in case you don't have it/lose it):
Encrypt file with public key (anyone can have this key):
Decrypt the file with private key (only you should have the private key):
The decoded message:
您可以使用公钥来加密文件,但需要相应的私钥来解密它。所以,是的,只要您有权访问公钥和私钥,您就应该能够使用 ssh 密钥来加密/解密文件。
You can use a public key to encrypt a file but you will need the corresponding private key to decrypt it. So, yes, you should be able to use your ssh-key to encrypt/decrypt a file, as long as you have access to both the public and private key.
如果您只想使用 ssh 密钥进行加密/解密,ssh-vault 可能会很有用,更多信息请参见此处: http://ssh-vault.com/about/
If you just want to encrypt/decrypt using your ssh keys, ssh-vault could be useful, more info here: http://ssh-vault.com/about/