我正在尝试将一些Java加密代码迁移到golang中并遇到
Cipher cipher = Cipher.getInstance(RSA_ECB_OAEPWithSHA256AndMGF1Padding);
cipher.init(Cipher.WRAP_MODE, cert);
return cipher.wrap(key);
我正在尝试找到此实现的任何方法。任何帮助,将不胜感激。谢谢。
答案 0 :(得分:0)
尽管这个问题还不清楚,但我认为您想要一种在Go中编码数据的方法。您可能会发现它对以下标准Go软件包的Google搜索很有帮助:
crypto/hmac
crypto/sha256
encoding/base64