英文:
how to implement pbewithmd5andtripledes algorithm with golang
问题
我想在Golang中实现使用pbewithmd5andtripledes加密算法,但是我找不到合适的方法。
我找到了一个仓库,但它是PBEWithMD5AndDES的实现。
https://github.com/pineda89/PBEWithMD5AndDES
英文:
I want to Implemente encryption algorithm pbewithmd5andtripledes with golang, I can not found the appropriate method
I found a repo, but it is PBEWithMD5AndDES
https://github.com/pineda89/PBEWithMD5AndDES
答案1
得分: 1
如果你查看这个line上的库代码,它使用了crypto/des
库。crypto/des
还提供了tripleDes的API。你可能想要fork这个库并根据你的需求修改实现。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论