Skip to content

Commit 3ebf9ed

Browse files
committed
Update readme for using of gpg command as signature layer
1 parent 5e0d8d7 commit 3ebf9ed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ var armoredPrivateKey = fs.readFileSync('somePGPKey.private', 'utf8');
1212

1313
var app = connect();
1414
app.use(pgpsign(armoredPrivateKey, 'password for unlocking'));
15+
16+
// Or, to use gpg system command as underlying PGP signature layer
17+
app.use(pgpsign(armoredPrivateKey, 'password for unlocking', 'keyringName'));
1518
```
1619

1720
## Triggering

0 commit comments

Comments
 (0)