mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00

- AES-256-CBC encryption algorithm for PKCS#12 files - required configuration file options Export LD_LIBRARY_PATH
231 lines
8.5 KiB
Bash
Executable File
231 lines
8.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
result=0
|
|
|
|
test_result() {
|
|
if test "$1" -eq 0
|
|
then
|
|
printf "Succeeded\n" >> "makecerts.log"
|
|
else
|
|
printf "Failed\n" >> "makecerts.log"
|
|
fi
|
|
}
|
|
|
|
make_certs() {
|
|
password=passme
|
|
result_path=$(pwd)
|
|
cd $(dirname "$0")
|
|
script_path=$(pwd)
|
|
cd "${result_path}"
|
|
mkdir "tmp/"
|
|
|
|
# OpenSSL settings
|
|
CONF="${script_path}/openssl_intermediate.cnf"
|
|
if test -n "$1"
|
|
then
|
|
OPENSSL="$1/bin/openssl"
|
|
export LD_LIBRARY_PATH="$1/lib:$1/lib64"
|
|
else
|
|
OPENSSL=openssl
|
|
fi
|
|
|
|
mkdir "demoCA/" 2>> "makecerts.log" 1>&2
|
|
touch "demoCA/index.txt"
|
|
echo -n "unique_subject = no" > "demoCA/index.txt.attr"
|
|
echo 1000 > "demoCA/serial"
|
|
date > "makecerts.log"
|
|
"$OPENSSL" version 2>> "makecerts.log" 1>&2
|
|
echo -n "$password" > "password.txt"
|
|
|
|
printf "\nGenerate root CA certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" genrsa -out demoCA/CA.key \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
TZ=GMT faketime -f '@2017-01-01 00:00:00' /bin/bash -c '
|
|
script_path=$(pwd)
|
|
OPENSSL="$0"
|
|
export LD_LIBRARY_PATH="$1"
|
|
CONF="${script_path}/openssl_root.cnf"
|
|
"$OPENSSL" req -config "$CONF" -new -x509 -days 3600 -key demoCA/CA.key -out tmp/CACert.pem \
|
|
-subj "/C=PL/O=osslsigncode/OU=Certification Authority/CN=Root CA" \
|
|
2>> "makecerts.log" 1>&2' "$OPENSSL" "$LD_LIBRARY_PATH"
|
|
test_result $?
|
|
|
|
printf "\nGenerate intermediate CA certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" genrsa -out demoCA/intermediate.key \
|
|
2>> "makecerts.log" 1>&2
|
|
TZ=GMT faketime -f '@2017-01-01 00:00:00' /bin/bash -c '
|
|
script_path=$(pwd)
|
|
OPENSSL="$0"
|
|
export LD_LIBRARY_PATH="$1"
|
|
CONF="${script_path}/openssl_intermediate.cnf"
|
|
"$OPENSSL" req -config "$CONF" -new -key demoCA/intermediate.key -out demoCA/intermediate.csr \
|
|
-subj "/C=PL/O=osslsigncode/OU=Certification Authority/CN=Intermediate CA" \
|
|
2>> "makecerts.log" 1>&2' "$OPENSSL" "$LD_LIBRARY_PATH"
|
|
test_result $?
|
|
TZ=GMT faketime -f '@2017-01-01 00:00:00' /bin/bash -c '
|
|
script_path=$(pwd)
|
|
OPENSSL="$0"
|
|
export LD_LIBRARY_PATH="$1"
|
|
CONF="${script_path}/openssl_root.cnf"
|
|
"$OPENSSL" ca -config "$CONF" -batch -in demoCA/intermediate.csr -out demoCA/intermediate.cer \
|
|
2>> "makecerts.log" 1>&2' "$OPENSSL" "$LD_LIBRARY_PATH"
|
|
test_result $?
|
|
"$OPENSSL" x509 -in demoCA/intermediate.cer -out tmp/intermediate.pem \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nGenerate private RSA encrypted key\n" >> "makecerts.log"
|
|
"$OPENSSL" genrsa -des3 -out demoCA/private.key -passout pass:"$password" \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
cat demoCA/private.key >> tmp/keyp.pem 2>> "makecerts.log"
|
|
test_result $?
|
|
|
|
printf "\nGenerate private RSA decrypted key\n" >> "makecerts.log"
|
|
"$OPENSSL" rsa -in demoCA/private.key -passin pass:"$password" -out tmp/key.pem \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nGenerate a certificate to revoke\n" >> "makecerts.log"
|
|
"$OPENSSL" req -config "$CONF" -new -key demoCA/private.key -passin pass:"$password" -out demoCA/revoked.csr \
|
|
-subj "/C=PL/O=osslsigncode/OU=CSP/CN=Revoked/emailAddress=osslsigncode@example.com" \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" ca -config "$CONF" -batch -in demoCA/revoked.csr -out demoCA/revoked.cer \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" x509 -in demoCA/revoked.cer -out tmp/revoked.pem \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nRevoke above certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" ca -config "$CONF" -revoke demoCA/revoked.cer \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nAttach intermediate certificate to revoked certificate\n" >> "makecerts.log"
|
|
cat tmp/intermediate.pem >> tmp/revoked.pem 2>> "makecerts.log"
|
|
test_result $?
|
|
|
|
printf "\nGenerate CRL file\n" >> "makecerts.log"
|
|
TZ=GMT faketime -f '@2019-01-01 00:00:00' /bin/bash -c '
|
|
script_path=$(pwd)
|
|
OPENSSL="$0"
|
|
export LD_LIBRARY_PATH="$1"
|
|
CONF="${script_path}/openssl_intermediate.cnf"
|
|
"$OPENSSL" ca -config "$CONF" -gencrl -crldays 8766 -out tmp/CACertCRL.pem \
|
|
2>> "makecerts.log" 1>&2' "$OPENSSL" "$LD_LIBRARY_PATH"
|
|
test_result $?
|
|
|
|
printf "\nConvert revoked certificate to SPC format\n" >> "makecerts.log"
|
|
"$OPENSSL" crl2pkcs7 -in tmp/CACertCRL.pem -certfile tmp/revoked.pem -outform DER -out tmp/revoked.spc \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nGenerate CSP Cross-Certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" genrsa -out demoCA/cross.key \
|
|
2>> "makecerts.log" 1>&2
|
|
TZ=GMT faketime -f '@2018-01-01 00:00:00' /bin/bash -c '
|
|
script_path=$(pwd)
|
|
OPENSSL="$0"
|
|
export LD_LIBRARY_PATH="$1"
|
|
CONF="${script_path}/openssl_intermediate.cnf"
|
|
"$OPENSSL" req -config "$CONF" -new -x509 -days 900 -key demoCA/cross.key -out tmp/crosscert.pem \
|
|
-subj "/C=PL/O=osslsigncode/OU=CSP/CN=crosscert/emailAddress=osslsigncode@example.com" \
|
|
2>> "makecerts.log" 1>&2' "$OPENSSL" "$LD_LIBRARY_PATH"
|
|
test_result $?
|
|
|
|
printf "\nGenerate code signing certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" req -config "$CONF" -new -key demoCA/private.key -passin pass:"$password" -out demoCA/cert.csr \
|
|
-subj "/C=PL/ST=Mazovia Province/L=Warsaw/O=osslsigncode/OU=CSP/CN=Certificate/emailAddress=osslsigncode@example.com" \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" ca -config "$CONF" -batch -in demoCA/cert.csr -out demoCA/cert.cer \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" x509 -in demoCA/cert.cer -out tmp/cert.pem \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nConvert the key to DER format\n" >> "makecerts.log"
|
|
"$OPENSSL" rsa -in tmp/key.pem -outform DER -out tmp/key.der -passout pass:"$password" \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nConvert the key to PVK format\n" >> "makecerts.log"
|
|
"$OPENSSL" rsa -in tmp/key.pem -outform PVK -out tmp/key.pvk -pvk-none \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nConvert the certificate to DER format\n" >> "makecerts.log"
|
|
"$OPENSSL" x509 -in tmp/cert.pem -outform DER -out tmp/cert.der \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nAttach intermediate certificate to code signing certificate\n" >> "makecerts.log"
|
|
cat tmp/intermediate.pem >> tmp/cert.pem 2>> "makecerts.log"
|
|
test_result $?
|
|
|
|
printf "\nConvert the certificate to SPC format\n" >> "makecerts.log"
|
|
"$OPENSSL" crl2pkcs7 -nocrl -certfile tmp/cert.pem -outform DER -out tmp/cert.spc \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nConvert the certificate and the key into a PKCS#12 container\n" >> "makecerts.log"
|
|
"$OPENSSL" pkcs12 -export -in tmp/cert.pem -inkey tmp/key.pem -out tmp/cert.p12 -passout pass:"$password" \
|
|
-keypbe aes-256-cbc -certpbe aes-256-cbc \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nGenerate expired certificate\n" >> "makecerts.log"
|
|
"$OPENSSL" req -config "$CONF" -new -key demoCA/private.key -passin pass:"$password" -out demoCA/expired.csr \
|
|
-subj "/C=PL/ST=Mazovia Province/L=Warsaw/O=osslsigncode/OU=CSP/CN=Expired/emailAddress=osslsigncode@example.com" \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" ca -config "$CONF" -enddate "190101000000Z" -batch -in demoCA/expired.csr -out demoCA/expired.cer \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
"$OPENSSL" x509 -in demoCA/expired.cer -out tmp/expired.pem \
|
|
2>> "makecerts.log" 1>&2
|
|
test_result $?
|
|
|
|
printf "\nAttach intermediate certificate to expired certificate\n" >> "makecerts.log"
|
|
cat tmp/intermediate.pem >> tmp/expired.pem 2>> "makecerts.log"
|
|
test_result $?
|
|
|
|
# copy new files
|
|
if test -s tmp/intermediate.pem -a -s tmp/CACert.pem -a -s tmp/CACertCRL.pem \
|
|
-a -s tmp/key.pem -a -s tmp/keyp.pem -a -s tmp/key.der -a -s tmp/key.pvk \
|
|
-a -s tmp/cert.pem -a -s tmp/cert.p12 -a -s tmp/cert.der -a -s tmp/cert.spc \
|
|
-a -s tmp/crosscert.pem -a -s tmp/expired.pem -a -s tmp/revoked.pem -a -s tmp/revoked.spc
|
|
then
|
|
cp tmp/* ./
|
|
printf "%s\n" "keys & certificates successfully generated"
|
|
printf "%s\n" "makecerts.sh finished"
|
|
else
|
|
printf "%s\n" "makecerts.sh failed"
|
|
printf "%s\n" "error logs ${result_path}/makecerts.log"
|
|
result=1
|
|
fi
|
|
|
|
# remove the working directory
|
|
rm -rf "demoCA/"
|
|
rm -rf "tmp/"
|
|
|
|
exit "$result"
|
|
}
|
|
|
|
# Tests requirement
|
|
if test -n "$(command -v faketime)"
|
|
then
|
|
make_certs "$1"
|
|
result=$?
|
|
else
|
|
printf "%s\n" "faketime not found in \$PATH"
|
|
printf "%s\n" "tests skipped, please install faketime package"
|
|
result=1
|
|
fi
|
|
|
|
exit "$result"
|