I got This error When I run my go project, and use openssl library
Asked
Active
Viewed 108 times
0
-
1Can you please paste the text in the image instead of image itself? See https://meta.stackoverflow.com/questions/285551/why-should-i-not-upload-images-of-code-data-errors – Zeke Lu Apr 11 '23 at 03:01
2 Answers
0
Try to install the openssl libraries.
Linux: it's
libssl-dev
(see How do I install the OpenSSL libraries on Ubuntu?).macOS: install with
homebrew
:brew install openssl
. See the doc for thegithub.com/spacemonkeygo/openssl
package

Zeke Lu
- 6,349
- 1
- 17
- 23
0
In Ubuntu 22, default OpenSSL is grater than 3.0,. github.com/spacemonkeygo/openssl require OpenSSL1.1.x
you should need download OpenSSL1.1.x source code and compile it.

he shouyong
- 159
- 3