gpt4 book ai didi

javascript - 如何编写Javascript代码为任意字符串的输入创建小于或等于20字节的哈希字符串?

转载 作者:行者123 更新时间:2023-12-02 21:28:58 24 4
gpt4 key购买 nike

我有多个字符串(包含字母数字字符),例如:

  • 523d33f0dc94a247536ea849b4834a77
  • 12hjh89nd9009idfn90kkui897oiuwer23
  • 3284uioen89ji89ji89ddf64f1f167678

等等。

我想将这些字符串转换为小于或等于20字节的散列。有没有JS函数可以做到这一点?我专门寻找小于或等于 20 字节的输出。

最佳答案

尝试使用:首先安装 Bower(Web 包管理器)

npm install -g bower

在终端中转到项目所在位置并运行以下命令:

bower install crypto-js

在 HTML 文件中添加以下代码:

<script type="text/javascript" src="path-to/bower_components/crypto-js/crypto-js.js"></script>
<script type="text/javascript">
var hash = CryptoJS.MD5("message");// returns 16 bytes hash code
console.log(hash.toString());
</script>

Here path-to represents the relative path to bower_components folder that was created by the execution of bower install crypto-js

希望这有帮助。引用请访问https://github.com/brix/crypto-js

关于javascript - 如何编写Javascript代码为任意字符串的输入创建小于或等于20字节的哈希字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60670543/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com