TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Which websites use GPG public/secret keys for user password retrieving?

4 点作者 NaNaN超过 10 年前
I think email accounts are fragile because you must make sure both the client and the server are secure.<p>If you use GPG public&#x2F;secret keys, then you don&#x27;t need email for password retrieving any more. (and no email spams about that)<p>1. For registrations, upload your public key and use your secret key to verify that you own the public key. 2. Retrieve your user password is simple, too. The server encrypt some text with your public key, then you use the secret key to decrypt and submit the original text to verify.<p>Nowadays, more and more people use password managers to generate strong passwords. Why not use GPG? Is any website using GPG for password retrieving?

3 条评论

rprospero超过 10 年前
The problem with using GPG for password retrieval is that we&#x27;re assuming that the user is irresponsible enough to lose their password, but responsible enough to maintain backups of their public and private key.<p>To put it differently, if you have gpg authentication available, why are you even bothering with a password in the first place?
评论 #8694120 未加载
valarauca1超过 10 年前
GPG doesn&#x27;t easily lend itself to be wrapped, or even used for that matter.<p>You are welcome to try.
hakanderyal超过 10 年前
Tried to explain GPG, public&#x2F;secret keys to non-tech guys. Not fun.<p>Something like that must be easy to use, and easy to understand to be used by the masses.