英文:
Using bcrypt on client side web page using JavaScript
问题
对于crypto-js,像这样使用它很容易:
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script>
是否有类似的选项用于bcrypt,以便我可以将其添加到静态页面中?
英文:
For crypto-js, it was easy to use it like:
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script>
Is there any similar option for bcrypt, so that I can add it to a static page?
答案1
得分: 1
你可以在jsDelivr上找到它。我必须指出,bcryptjs(上次更新是6年前 - 相当老)是bcrypt的修改版本(上次更新是8个月前 - 它是官方版本)。如果你想使用bcryptjs,请在jsDeliver上找到它(尽管不建议)。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论