package
0.0.0-20250116181400-bd9d2b4f5835
Repository: https://github.com/ryanker/gin_v1.git
Documentation: pkg.go.dev
# README
How to generate RSA private key and digital certificate
- Install Openssl
Please visit https://github.com/openssl/openssl to get pkg and install.
- Generate RSA private key
$ mkdir testdata
$ openssl genrsa -out ./testdata/server.key 2048
- Generate digital certificate
$ openssl req -new -x509 -key ./testdata/server.key -out ./testdata/server.pem -days 365