update testsign.sh

This commit is contained in:
Per Allansson 2015-03-07 19:51:48 +01:00
parent 80b92fd778
commit e01da8fb55
2 changed files with 17 additions and 1 deletions

View File

@ -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

View File

@ -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