Skip to content

Instantly share code, notes, and snippets.

View kissofjudase23's full-sized avatar
🌴
On vacation

Tom Lin kissofjudase23

🌴
On vacation
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@kissofjudase23
kissofjudase23 / golang-tls.md
Created January 22, 2020 02:22 — forked from denji/golang-tls.md
Simple Golang HTTPS/TLS Examples

Moved to git repository: https://github.com/denji/golang-tls

Generate private key (.key)
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048

# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)