英文: Reading and writing over a tls.Server connection 问题 我正在使用Go语言编写一个SMTP服务器。实现STARTTLS命令需要使用crypto/...
使用自签名证书的TLS
英文: TLS with selfsigned certificate 问题 我正在尝试使用自签名的服务器证书建立TLS连接。 我使用了这个示例代码生成证书:http://golang.org/src...
Golang:如何在HTTP客户端的TLS配置中指定证书。
英文: Golang: how to specify certificate in TLS config for http client 问题 我有一个证书文件,位置是:/usr/abc/my.crt...
如何使用GoLang通过HTTP的”Host”头部来定位特定的应用服务器。
英文: How can I target a specific application server using the HTTP "Host" header (using GoL...
What is the proper way to handle TLSNextProto in golang net/http?
英文: What is the proper way to handle TLSNextProto in golang net/http? 问题 使用golang的net/http包和SPDY进行开发...
在Go中将连接升级为TLS
英文: Upgrade a connection to TLS in Go 问题 我有一个打开的TCP连接,并使用for循环从中读取,代码如下: for { // tx.Text的类型是textpro...
Pre-master secret在实现Diffie-Hellman密钥交换时不匹配。
英文: Pre-master secret mistmatched when implementing Diffie-Hellman key exchange 问题 我正在尝试将DHE_DSS实现到G...
如何使用无效证书进行https请求?
英文: How to do a https request with bad certificate? 问题 假设我想以编程方式获取 https://golang.org。目前 golang.org(...
我可以创建自己的根证书来与Go进行SSL连接吗?这样安全吗?
英文: Can I create my own root certificate to use for an SSL connection with Go? Is this safe? 问题 我正在使...
28