Convert a Base64 PEM encoded .cer certificate into binary DER format. Everything runs in your browser.
A .cer file in PEM form holds a Base64 X.509 certificate between -----BEGIN CERTIFICATE----- markers. DER is the raw binary ASN.1 encoding of that certificate. This tool strips the PEM headers and Base64-decodes the body into binary DER bytes - the browser equivalent of openssl x509 -in cert.cer -outform DER -out cert.der.
Convert and package keys for SSH, TLS, and keystore workflows.