Tagged articles
4 articles
Page 1 of 1
Raymond Ops
Raymond Ops
Jan 12, 2025 · Information Security

Master SSL/TLS Certificates: Formats, Generation & OpenSSL Commands

This guide explains common certificate formats (PEM, DER, CRT, CER), shows how to generate a CA key, CSR, and signed certificate with OpenSSL, demonstrates format conversions, and provides commands for inspecting and verifying certificates, all essential for secure operations.

CertificateDEROpenSSL
0 likes · 7 min read
Master SSL/TLS Certificates: Formats, Generation & OpenSSL Commands
Ops Development & AI Practice
Ops Development & AI Practice
Feb 27, 2024 · Information Security

How to Parse PKCS#1 and PKCS#8 PEM Private Keys in Go

This guide explains the differences between PKCS#1 and PKCS#8 PEM private key formats, shows how to identify the format by inspecting the PEM header, and provides step‑by‑step Go code using x509.ParsePKCS1PrivateKey or x509.ParsePKCS8PrivateKey to correctly decode and use the key.

GoPEMPKCS1
0 likes · 4 min read
How to Parse PKCS#1 and PKCS#8 PEM Private Keys in Go