-
-
Save gleicon/17ca1637fff51825eaea31b0ca8612f3 to your computer and use it in GitHub Desktop.
Download ICP-Brasil certificates and make a bundle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
HTTPADDR=http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/ACcompactado.zip | |
DEST=/etc/ssl/certs/icp-brasil | |
mkdir -p ${DEST} | |
cd ${DEST} | |
rm -f *.crt | |
rm -f *.zip | |
wget "$HTTPADDR" | |
unzip *.zip | |
for fn in $(file *.crt|grep data|sed 's/: *data//') | |
do | |
mv $fn $fn.der | |
openssl x509 -inform der -in $fn.der -out $fn | |
done | |
#rm *.der | |
for f in $(ls *.crt); do | |
dos2unix $f > /dev/null | |
openssl x509 -text -in $f >> bundle.crt | |
done | |
#Ref: http://blog.gendoc.com.br/2012/03/instalando-os-certificados-ac-do-icp-brasil-para-e-cpf-e-e-cnpj/ | |
#Ref: http://www.iti.gov.br/icp-brasil/certificados/188-atualizacao/4530-ac-raiz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
(...) | |
SSLCACertificateFile /etc/ssl/certs/icp-brasil/bundle.crt | |
(...) | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment