feat: v0.1.0

This commit is contained in:
2023-10-31 00:32:56 +08:00
parent 0eae36538c
commit 3e49f4ca02
10 changed files with 257 additions and 11 deletions

View File

@@ -1,3 +1,24 @@
# sign-pdf
Sign PDF files
Sign PDF files
Sign with certs and private key:
```shell
$ java -jar sign-pdf.jar \
--in input.pdf \
--out signed.pdf \
--certs certs.pem \
--key private.pem
```
Sign with certs and PIV:
```shell
$ java -jar sign-pdf.jar \
--in input.pdf \
--out signed.pdf \
--certs certs.pem \
--slot 90\
--pin ******
```