From e01da8fb55c5558ebd6150ef059cd8e4f3ac58b0 Mon Sep 17 00:00:00 2001 From: Per Allansson Date: Sat, 7 Mar 2015 19:51:48 +0100 Subject: [PATCH] update testsign.sh --- ChangeLog | 5 +++++ tests/testsign.sh | 13 ++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e749560..b48aacb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +=== 1.8 (2015-xx-xx) + +- add support for pkcs11-based hardware tokens + (Patch from Leif Johansson) + === 1.7.1 (2014-07-11) - MSI: added -add-msi-dse option diff --git a/tests/testsign.sh b/tests/testsign.sh index a3076dc..04efb73 100755 --- a/tests/testsign.sh +++ b/tests/testsign.sh @@ -1,5 +1,16 @@ #!/bin/sh +rm -f putty*.exe + +PUTTY_URL="http://the.earth.li/~sgtatham/putty/0.64/x86/putty.exe" +[ -f putty.exe ] || wget -q -O putty.exe $PUTTY_URL +[ -f putty.exe ] || curl -o putty.exe $PUTTY_URL + +if [ ! -f putty.exe ]; then + echo "FAIL: Couldn't download putty.exe" + exit 1 +fi + rm -f key.* cert.* keytool -genkey \ @@ -13,6 +24,7 @@ SE yes EOF + echo "Converting key/cert to PKCS12 container" keytool -importkeystore \ -srckeystore key.ks -srcstoretype JKS -srckeypass passme -srcstorepass passme -srcalias selfsigned \ @@ -35,7 +47,6 @@ echo "Converting cert to SPC format" openssl crl2pkcs7 -nocrl -certfile cert.pem -outform DER -out cert.spc -wget -q -O putty.exe http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe ../osslsigncode sign -spc cert.spc -key key.pem putty.exe putty1.exe ../osslsigncode sign -certs cert.spc -key keyp.pem -pass passme putty.exe putty2.exe ../osslsigncode sign -certs cert.pem -key keyp.pem -pass passme putty.exe putty3.exe