私钥密码的用途是什么?

发布于 2024-12-06 05:10:43 字数 75 浏览 0 评论 0原文

有时,我看到用户使用私钥和密码登录。

那么,这是否意味着公钥存储在登录服务器上?

密码短语的目的是什么?

Sometimes, I see users use a private key and passphrase to log in.

So, does it mean the public key is stored on the log in server?

What's the purpose of the pass phrase?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤仙姿 2024-12-13 05:10:44

是的,服务器存储公钥,客户端存储私钥。防止被盗私钥对小偷有用的安全功能是对其进行加密。密码允许您解密私钥以使用它。没有密码,密钥就没用。

通常,您可以通过查看密钥周围的 PEM 标头来了解密钥是否已加密。例如,使用 PEM 格式的 3DES 加密的 DSA 私钥可能如下所示:

-----BEGIN DSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,BF6892D860EC969F
<encrypted key data here>
-----END DSA PRIVATE KEY-----

而 PEM 格式的未加密 DSA 私钥不会有表明其已加密的标头:

-----BEGIN DSA PRIVATE KEY-----
<unencrypted key data here>
-----END DSA PRIVATE KEY-----

Yes, the server stores the public key, and the client stores the private key. A security feature to prevent stolen private keys from being useful to the thief is to encrypt them. The passphrase allows you to decrypt the private key to use it. Without the passphrase, the key is useless.

You know whether a key is encrypted generally by looking at the PEM header surrounding it. For example, a DSA private key encrypted with 3DES in PEM format might look like this:

-----BEGIN DSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,BF6892D860EC969F
<encrypted key data here>
-----END DSA PRIVATE KEY-----

Whereas an unencrypted DSA private key in PEM format would not have a header saying it's encrypted:

-----BEGIN DSA PRIVATE KEY-----
<unencrypted key data here>
-----END DSA PRIVATE KEY-----
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文