You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,24 +19,28 @@ tool would fail. And, so, osslsigncode was born.
19
19
20
20
## WHAT CAN IT DO?
21
21
22
-
It can sign and timestamp PE (EXE/SYS/DLL/etc), CABand MSI files. It supports
23
-
the equivalent of signtool.exe's "-j javasign.dll -jp low", i.e. add a
24
-
valid signature for a CAB file containing Java files. It supports getting
25
-
the timestamp through a proxy as well. It also supports signature verification,
26
-
removal and extraction.
22
+
It can sign and timestamp PE (EXE/SYS/DLL/etc), CAB, CAT and MSI files.
23
+
It supports the equivalent of signtool.exe's "-j javasign.dll -jp low",
24
+
i.e. add a valid signature for a CAB file containing Java files.
25
+
It supports getting the timestamp through a proxy as well. It also
26
+
supports signature verification, removal and extraction.
27
27
28
28
## BUILDING
29
29
30
30
This build technique works on Linux and macOS, if you have the necessary tools installed:
31
31
```
32
-
./autogen.sh
32
+
./bootstrap
33
33
./configure
34
34
make
35
35
make install
36
36
```
37
37
38
-
* On Linux, (tested on Debian/Ubuntu) you may need `sudo apt-get update && sudo apt-get install build-essential autoconf libtool libssl-dev python3-pkgconfig libcurl4-gnutls-dev`
39
-
* On macOS with Homebrew, you probably need to do these things before autogen.sh and configure:
38
+
* On Linux, (tested on Debian/Ubuntu) you may need
0 commit comments