Tagged: certificate

ansible logo 0

Ansible: Split A String By Length

This is something I needed to allow me to push a base64 encoded certificate into A Cisco ASA, but there was buffer limit on the input ERROR: Input line size exceeded available buffer (510...

0

Convert certificate format with OpenSSL

Convert a PEM file to DER (crt etc) $ openssl x509 -outform der -in certificate.pem -out certificate.crt Convert a PKCS#12 file (.pfx .p12) containing a private key and certificates to PEM $ openssl pkcs12...