how to implement pbewithmd5andtripledes algorithm with golang

huangapple go评论84阅读模式
英文:

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这个库并根据你的需求修改实现。

英文:

If you check the libraries code at this line It uses library crypto/des library. crypto/des also provides api for tripleDes. You might want to fork the library and change the implementation suitable to you.

huangapple
  • 本文由 发表于 2021年7月31日 16:55:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/68600626.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定