0.15.1 • Published 6 years ago
simple-signtool v0.15.1
Simple Signtool
A simple wrapper around signtool using node exec
.
Documentation
Installation
npm install simple-signtool --save-dev
Usage
First, import simple-signtool
into your project:
import * as signtool from 'simple-signtool';
Example
import * as signtool from 'simple-signtool';
const file = path.join(__dirname, 'my.exe');
signtool.sign(file, {
rawString: '/d mydescription',
rfcTimeStampUrl: {
url: 'http://sha1timestamp.ws.symantec.com/sha1/timestamp',
digestAlgorithm: 'sha256'
}
});
signtool.sign(file, options);
Contributing
Guidelines
- Independent options should be in the top-level options interface, e.g.,
rawString
Options that depend on each other should be in their own interface.
Example:export interface ISignOptions { rfcTimeStampUrl?: IRFCTimeStamp; } interface IRFCTimeStamp { url: string; digestAlgorithm?: 'sha256'; // depends on 'url' }
Steps
- Fork this repository
- Get project working locally
git clone git@github.com:<yourusername>/simple-signtool.git
cd simple-signtool
npm install
- Write/edit code
- Write tests
- Run
npm test
and fix any errors - Open a pull request
License
MIT, please see LICENSE.md for details.
0.15.1
6 years ago
0.15.0
6 years ago
0.14.3
6 years ago
0.14.1
6 years ago
0.14.0
6 years ago
0.13.0
6 years ago
0.12.0
6 years ago
0.11.1
6 years ago
0.11.0
6 years ago
0.10.0
6 years ago
0.9.0
6 years ago
0.7.0
6 years ago
0.6.0
6 years ago
0.5.0
6 years ago
0.4.5
6 years ago
0.4.4
6 years ago
0.4.3
6 years ago
0.4.2
6 years ago
0.4.1
6 years ago
0.4.0
6 years ago
0.2.2
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago
0.1.2
6 years ago
0.1.1
6 years ago
0.1.0
6 years ago
0.0.9
6 years ago
0.0.8
6 years ago
0.0.7
6 years ago
0.0.6
6 years ago
0.0.5
6 years ago
0.0.3
6 years ago
0.0.2
6 years ago
0.0.1
6 years ago