我正在用go编写程序,该程序向不同的服务器发出HTTP请求并读取响应。该程序在Windows / Mac上绝对可以正常运行,但是当我在具有Rasbian OS的基于ARM的Rasp Pi 3上运行该程序时,它会失败。

每次我尝试构建代码时都会引发此错误,这有什么暗示我在做什么错吗?

# golang.org/x/crypto/acme/autocert
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:301: hello.SupportedProtos undefined (type *tls.ClientHelloInfo has no field or method SupportedProtos)
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:311: hello.SignatureSchemes undefined (type *tls.ClientHelloInfo has no field or method SignatureSchemes)
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:314: hello.SignatureSchemes undefined (type *tls.ClientHelloInfo has no field or method SignatureSchemes)
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:315: undefined: tls.SignatureScheme
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:317: undefined: tls.ECDSAWithP256AndSHA256
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:318: undefined: tls.ECDSAWithP384AndSHA384
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:318: undefined: tls.ECDSAWithP521AndSHA512
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:344: undefined: tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
../../go/src/golang.org/x/crypto/acme/autocert/autocert.go:347: undefined: tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305

预先感谢您的支持,如果您需要更多信息,请告诉我。

最佳答案

确保使用与其他平台相同的Go版本。某些功能可能已在较新的版本中添加。

关于linux - ARM 上的自动证书缺少字段或方法签名方案,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53813470/

10-13 08:22