英文: How does crypto library in Go compare to OpenSSL? 问题 这是要翻译的内容: 这个实现在生产代码中使用是否足够安全?特别是作为TLS客户端。 如...
我们为什么需要一个常数时间的“单字节”比较函数?
英文: Why do we need a constant time *single byte* comparison function? 问题 在Go标准库中,有一个名为ConstantTimeBy...
OpenPGP在Go中的错误: “crypto: 请求的哈希函数不可用”
英文: OpenPGP in Go Error: "crypto: requested hash function is unavailable" 问题 我正在使用Go语言的ope...
Golang加密多次调用有不同的响应
英文: Golang crypto multiple calls have different responses 问题 我对我为密码验证库编写的一些Go代码遇到了问题。总体思路是提供两个函数Chec...
如何在Go中计算sha256文件校验和
英文: How to calculate sha256 file checksum in Go 问题 我需要一个用于Windows的实用程序,用于计算sha256文件校验和,以便在我下载Fedora时...
将加密/rsa私钥保存到磁盘并从磁盘加载
英文: Save and load crypto/rsa PrivateKey to and from the disk 问题 我正在使用crypto/rsa,并尝试找到一种正确保存和加载密钥的方法。...
Pre-master secret在实现Diffie-Hellman密钥交换时不匹配。
英文: Pre-master secret mistmatched when implementing Diffie-Hellman key exchange 问题 我正在尝试将DHE_DSS实现到G...
如何将ECDSA曲线规范从SEC2形式转换为Go所需的形式?
英文: How can I convert a ECDSA curve specification from the SEC2 form into the form needed by Go? 问题 ...
Go – 加密/随机数的示例
英文: Go - Example about crypto/rand 问题 可以给一个关于crypto/rand的使用的小例子吗? 函数Read的参数是一个字节数组。为什么?因为它访问*/dev/ur...
如何在Golang中从字符串获取MD5哈希值?
英文: How to get a MD5 hash from a string in Golang? 问题 这是我开始从一个字符串获取md5哈希值的方法: import "crypto/md...
18