Crypto-js 库不再可用

Crypto-js lib is not available anymore

我已经使用了以下库很多年了,现在它不可用了。 http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js

有人可以帮忙寻找替代方案吗?

从这里下载你需要的库资源:https://code.google.com/archive/p/crypto-js/downloads

然后放到自己的服务器上...然后替换 http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js 经过 /directory_where_you_put_the_download/rollups/md5.js

对我有用。

它仍然托管在 cdnjs 上,我找到了它的工作 URL 查看我的回答 How to generate an MD5 file hash in JavaScript?

md5.js 等个别 js 文件的 URL 已更改(除此之外,您需要先加载 core.js)

尝试 <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/core.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/md5.js"></script> 并查看 https://cdnjs.com/libraries/crypto-js 的 URL

您可以使用诸如

之类的代码
var hash = CryptoJS.MD5("Message");
console.log(hash);

当我需要这样的东西时,我总是会访问 https://cdnjs.com/libraries/crypto-js。免费和开源 CDN。你可以在那里找到很多版本。