clean up the extracted certificate

the certificate extracted in the above way will contain some junk
from openssl s_client output we don't want like verification status
we can remove it ro reduce disk usage for saved certificates
This commit is contained in:
Hubert Kario 2014-07-11 17:29:57 +02:00
parent 3e37517c96
commit d9b718be12
1 changed files with 2 additions and 0 deletions

View File

@ -188,6 +188,8 @@ test_cipher_on_target() {
/-----END CERTIFICATE-----/ {split_after=1}
{if (n == i) print }
' <<<"$tmp")
# clean up the cert from junk before BEGIN CERTIFICATE
cert=$(${OPENSSLBIN} x509 <<<"$cert" 2>/dev/null)
# compute sha256 fingerprint of the certificate
local sha256sum=$(${OPENSSLBIN} x509 -outform DER <<<"$cert" 2>/dev/null |\