Mention MSI support in docs

This commit is contained in:
Per Allansson 2013-03-07 08:23:36 +01:00
parent d16acb6019
commit bb7c430b8f
2 changed files with 3 additions and 3 deletions

4
README
View File

@ -22,7 +22,7 @@ tool would fail. And, so, osslsigncode was born.
== WHAT CAN IT DO? == WHAT CAN IT DO?
It can sign and timestamp EXE or CAB files. It supports the equivalent It can sign and timestamp EXE, CAB and MSI files. It supports the equivalent
of signcode.exe's "-j javasign.dll -jp low", i.e. add a valid signature of signcode.exe's "-j javasign.dll -jp low", i.e. add a valid signature
for a CAB file containing Java files. It supports getting the timestamp for a CAB file containing Java files. It supports getting the timestamp
through a proxy as well. through a proxy as well.
@ -56,7 +56,7 @@ from the PEM file by doing:
openssl rsa -passin pass:XXXXX -outform der \ openssl rsa -passin pass:XXXXX -outform der \
-in <pem-key-file> -out <der-key-file> -in <pem-key-file> -out <der-key-file>
To sign an EXE file you can now do: To sign an EXE or MSI file you can now do:
osslsigncode -spc <spc-file> -key <der-key-file> \ osslsigncode -spc <spc-file> -key <der-key-file> \
-n "Your Application" -i http://www.yourwebsite.com/ \ -n "Your Application" -i http://www.yourwebsite.com/ \

View File

@ -1,5 +1,5 @@
/* /*
OpenSSL based Authenticode signing for PE files and Java CAB's. OpenSSL based Authenticode signing for PE/MSI/Java CAB files.
Copyright (C) 2005-2013 Per Allansson <pallansson@gmail.com> Copyright (C) 2005-2013 Per Allansson <pallansson@gmail.com>