olszomal
97b7002547
required packages
2019-07-28 14:15:23 +02:00
Randy Fay
dc0b2d7273
Improve build instructions for osslsigncode, fixes #12 ( #15 )
...
fixes #12
* Switch to using PKG_CONFIG_PATH instead of LDFLAGS and CPPFLAGS
2019-07-28 14:11:53 +02:00
Michał Trojnara
764fec5bd1
Fix password tests
2019-07-20 14:38:12 +02:00
Michał Trojnara
f39ac9caee
Fixed "add" tests
...
The "add" command was never supposed to copy a signature.
See afd5c5177d
for details.
2019-07-20 14:17:41 +02:00
Michał Trojnara
1121713d48
Typo
2019-07-20 13:53:50 +02:00
olszomal
00290bc363
Test improvements ( #14 )
...
* removed pvk keys tests
* new 11_sign_nest test
* improved verify_signature()
* new tests of timestamping with the add command
2019-07-20 12:54:46 +02:00
olszomal
62e8ffd0c9
allow timestamping with the add command
2019-07-20 12:51:23 +02:00
Michał Trojnara
891887a974
Never overwrite or unlink an existing file
...
Fixes #9
The code uses the "x" file access mode flag introduced by the C11
standard (ISO/IEC 9899:2011). It may be unsupported on Windows.
2019-07-13 15:25:41 +02:00
olszomal
3645ba7357
New tests for osslsigncode ( #11 )
2019-07-13 11:41:03 +02:00
Michał Trojnara
4c44cfdd76
Fix double free
2019-07-11 20:20:47 +02:00
Jemmy Wang
6c8ec4427a
Fix segmentation fault
2019-07-01 22:02:17 +02:00
Jemmy Wang
c740b097df
Fix SpcPageHashLink generation
...
The orginal code handles ASN1_SET improperly, which results in INVALID
page hash SpcLink.
This commit fixes the bug. osslsigncode can now generate valid
signatures with -ph (page hash) option.
2019-07-01 22:02:17 +02:00
Reimar Döffinger
0bea1ac8f6
Ensure variable is initialized.
...
It seem unnecessarily risky to leave it
uninitialized when PKCS7_free is called
on it unconditionally at the end of the
function.
2019-04-25 00:02:33 +02:00
Michał Trojnara
12966f611a
Consistent DO_EXIT_n interface
2019-04-24 06:54:44 +02:00
Reimar Döffinger
044861b323
Make -pkcs11engine option optional. ( #5 )
...
If not specified, load all builtin engines,
most likely the pkcs11 one will be among them.
This makes the pkcs11module option much easier
to use in the most common use-cases.
2019-04-24 06:47:53 +02:00
Michał Trojnara
bed25dcb7d
Error formatting fixes
...
closes #3
2019-04-24 06:17:31 +02:00
Reimar Döffinger
8c82f76905
Remove unused Authenticode object IDs.
2019-04-23 22:55:57 +02:00
barrybingo
342518fcbe
Minorfixes ( #2 )
...
Replace legacy function
2019-04-02 13:52:25 +02:00
Michał Trojnara
fe08daaa4f
use OpenSSL memory allocation
2018-12-09 23:30:20 +01:00
Michał Trojnara
5a01658434
use tohex() for bin2hex conversion
2018-12-09 23:05:13 +01:00
Michał Trojnara
d007c03bb6
signed/unsigned conversion fixes
2018-12-09 22:51:15 +01:00
Michał Trojnara
a935479e7f
fixed a few typos
2018-12-08 22:06:36 +01:00
Michał Trojnara
db559c4769
code simplification
...
Avoid re-implementing common library functions.
2018-12-08 21:55:15 +01:00
Michał Trojnara
693ac8c476
new bug reporting procedure
2018-12-08 17:07:25 +01:00
Michał Trojnara
2e9113cd41
code deduplication and cleanup
2018-12-08 16:56:29 +01:00
Michał Trojnara
a7c624d0a9
fixed OpenSSL 1.1 check to fail with OpenSSL 1.0
...
closes #1
2018-12-08 09:55:04 +01:00
Michał Trojnara
c9396c4be9
configure.ac indentation
2018-12-08 09:49:11 +01:00
Michał Trojnara
6da2a23d1f
version number bump
2018-12-05 23:02:08 +01:00
Michał Trojnara
642a290343
more consistent code formatting and indentation
2018-12-05 22:59:41 +01:00
Michał Trojnara
fe89b08e35
version 2.0
2.0
2018-12-04 22:17:07 +01:00
Michał Trojnara
6bc9105793
file format fixes
2018-12-04 22:06:35 +01:00
Michał Trojnara
9b2df1c2fc
file renames
2018-12-04 21:03:21 +01:00
Michał Trojnara
1977db24f1
Fixed PKCS11_MODULE_PATH name
2018-11-26 08:22:57 +01:00
Michał Trojnara
687bd91531
corrected OpenSSL version checks
2018-11-22 08:33:44 +01:00
Michał Trojnara
9554bbeb14
test cleanup
2018-11-22 08:07:13 +01:00
Michał Trojnara
bc8e209d6e
ported to SoftHSM2
2018-11-22 08:01:20 +01:00
Michał Trojnara
1f9f8df126
ported to OpenSSL 1.1.x
2018-11-22 07:54:27 +01:00
Per Allansson
e72a1937d1
fixed Windows / Cygwin / MinGW compile
2015-08-31 23:03:58 +02:00
Per Allansson
4ef0e54438
guard against missing defs of TRUE/FALSE
2015-08-31 20:15:01 +02:00
Per Allansson
df25781578
added -noverifypeer option to timestamping
2015-07-07 21:07:42 +02:00
Cory Fields
3be7eb1676
add the attach-signature command
...
Combine a previously extracted signature with an unsigned file and output a
valid, signed result. Accepts binary or pem pkcs7 inputs.
This is helpful for a deterministic build process, where the signer is only
required to provide a detached signature and users or other builders can use
it to create an otherwise deterministic binary.
2015-06-18 17:19:05 -04:00
Cory Fields
36715c1183
add the -pem option in extract-signature mode
...
This changes the extracted output to plaintext PEM format.
2015-06-18 17:18:44 -04:00
Per Allansson
59a42c66b6
Improved error reporting for timestamping errors (patch from Carlo Teubner)
2015-03-10 20:30:50 +01:00
Per Allansson
afd5c5177d
added ability to add an unauthenticated blob a signed PE file (patch from Scott Piper)
2015-03-07 20:25:30 +01:00
Per Allansson
e01da8fb55
update testsign.sh
2015-03-07 19:55:18 +01:00
Per Allansson
80b92fd778
fixed double free
2015-03-07 08:23:06 +01:00
Per Allansson
50b66a1eb4
pkcs11: don't hardcode pkcs11 engine path - use -pkcs11engine + -pkcs11module args instead
2015-03-06 22:00:48 +01:00
Leif Johansson
67ef46984f
documentation and sample pkcs11 token
2015-02-26 14:18:00 +01:00
Leif Johansson
89af05898e
pkcs11 support - initial version
2015-02-26 14:07:00 +01:00
Per Allansson
5677522790
verify: print cert serialno as well
2015-01-14 14:49:14 +01:00