生成/存储帐户激活码

发布于 2024-08-23 20:21:18 字数 99 浏览 9 评论 0原文

通常在您注册后的任何网站上,他们都会向您发送一封包含帐户激活码的电子邮件, 有关于这项技术的一些信息/最佳实践吗?
比如如何生成它们,如何存储它们,是否对这些激活码进行编码?

usually on any website after you register they send you an e-mail with an account activation code,
is there somewhere some information/best-practices about this technique ?
like about how do you generate them, how do you store them, do you encode or not these activation codes ?

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

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

发布评论

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

评论(2

盛夏尉蓝 2024-08-30 20:21:18

生成激活码可以像生成具有固定位数的随机数一样简单。

我个人这样做,然后将生成的代码与用户名/密码/电子邮件等一起存储在数据库的用户表中,以便在单击链接并运行检查代码时可以快速验证它。

我通常使用“长”数据类型并生成 9 位随机数,并将这些原始数据(未编码)存储在数据库中以便于检索。密码应该被编码,但激活码是一次性的、一次性的值,因此不需要任何特殊考虑。

Generated an activation code can be as simple as generating a random number with a fixed number of digits.

Personally I do this, then store the generated code in the users table of the database along with the username/password/email etc, so that it can be quickly verified when the link is clicked and your checking code run.

I usually go with a 'long' data type and generate 9-digit random numbers, and store these raw (not encoded) in the database for easy retrieval. Passwords should be encoded, but an activation code is a single-use, throw-away value so no need for any special consideration.

陈甜 2024-08-30 20:21:18

恕我直言,最好的方法是不存储密钥并在需要时使用种子或私钥生成密钥。或者使用 MD5 摘要类型的逻辑来使用特定的用户参数,例如,生成字符串“用户名-电子邮件-id”并对其进行哈希处理,并在用户再次单击它时将其发送到电子邮件中,尝试生成密钥并将其与用户密钥。无需储存且不可能再生。

IMHO, the best way of doing it not to store the key and generate it when you need it using a seed or a private key. Or use a MD5 digest kind of logic to use specific user params like, generate a string "username-email-id" and hash it and send it in the email when the user clicks it again, try to generate the key and match it against the user key. No need to storage and not possible to regenerate.

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