使用 javascript 创建随机 sha1 盐

发布于 2024-08-11 18:14:26 字数 45 浏览 5 评论 0原文

谁能推荐一个使用 javascript 创建 sha1 salt 的好方法?

can anyone recommend a good method to create a sha1 salt using javascript ?

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

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

发布评论

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

评论(3

后来的我们 2024-08-18 18:14:26

首先,阅读盐的用途以确保您理解它。 这个将帮助您入门,但您应该阅读更多内容。

本质上,任何适当大小的随机数据都可以满足您的目的。一般来说,您使用 SHA1 的事实是无关紧要的。

只需确保它足够大,足以防止实际的 rainbow table 攻击。

First, read up on what a salt is for to make sure you understand it. This and this will get you started, but you should read more.

Essentially, any random data of appropriate size will work for your purpose. Generally speaking, the fact that you are using SHA1 is irrelevant.

Just make sure it is large enough to prevent realistic rainbow table attacks.

┊风居住的梦幻卍 2024-08-18 18:14:26

尽管这是一篇较旧的文章,但它仍然出现在“sha1 javascript”搜索结果的顶部。 (不包括如何使用javascript解码SHA1?

对于任何只是寻找js的人加密库,以下链接可能会有所帮助:

crypto-js

此时,没有内置的 javascript 机制来处理(加密/解密)加密,因此这可能是您最好的选择,除非您更喜欢使用上面的 jQuery 插件。

Although this is an older post, it still appears at the top of the results for a search on "sha1 javascript". (Excluding a question on how to Decode SHA1 using javascript?)

For anyone simply looking for a js encryption library, the following link might be helpful:

crypto-js

At this time, there's no built-in javascript mechanism for handling (en/de)cryption so it's likely your best bet unless you prefer using the jQuery plugin above.

悟红尘 2024-08-18 18:14:26

查看这个 jQuery 插件: http://plugins.jquery.com/project/sha1

Check out this jQuery Plugin: http://plugins.jquery.com/project/sha1

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