This open source project is community-supported. To report a problem or share an idea, use
Issues; and if you have a suggestion for fixing the issue, please include those details, too.
In addition, use Pull Requests to contribute actual bug fixes or proposed enhancements.
We welcome and appreciate all contributions. Got questions or want to discuss something with our team?
Join us on Slack!
vSign is a Go library, SDK, and command line utility designed to secure the code signing process by using Venafi CodeSign Protect
IMPORTANT - vSign was not designed as a substitute for existing industry-standard signing tools such as signtool, jarsigner, etc.
- Notation signing plugin that supports Venafi CodeSign Protect
- Generic artifact signing
- PDF signing
- SDK (see simple use case here)
-
Configure your Go environment according to https://golang.org/doc/install.
-
Verify that GOPATH environment variable is set correctly.
-
Download the source code:
go get github.com/venafi/vsign
-
Build the command line utility:
make vsign
You can either use environment variables or a configuration file to customize interaction with the underlying WebSDK.
vsign-sdk
API Integration has been created with the following minimum scopes:
TPP Version | Minimum Scopes | Permissions |
---|---|---|
<= 22.4 | codesignclient;codesign;certificate:manage,discover |
Code signing certificate must be granted View,Read since POST Certificates/Retrieve is used to fetch the code signing certificates and optional chain |
>= 23.x | codesignclient;codesign |
None |
- Code signing user is assigned to
vsign-sdk
API integration.
VSIGN_URL = "https://tpp.example.com"
VSIGN_TOKEN = "xxx"
VSIGN_JWT = "xxx"
VSIGN_PROJECT = "Project\Environment"
VSIGN_TRUST_BUNDLE = "/my/path/chain.pem"
tpp_url = "https://tpp.example.com"
access_token = "xxx"
jwt = "xxx"
tpp_project = "Project\Environment"
trust_bundle = "/my/path/chain.pem"
For authentication only use either access_token/VSIGN_TOKEN
or jwt/VSIGN_JWT
, since the JWT will be exchanged for an access token.
tpp_url
/ VSIGN_URL
= base URL for TPP
access_token
/ VSIGN_TOKEN
= Access token for CodeSign Protect user with minimum scope:
codesignclient;codesign;certificate:manage,discover
certificate scope needed by some parts of vSign library for retrieving code signing certificates.
tpp_project
/ VSIGN_PROJECT
= Path to CodeSign Protect environment to use for signing
tpp_jwt
/ VSIGN_JWT
= JWT useful when TPP is configured for JWT authentication. Helpful for automated pipelines where you would want to exchange and short-lived OIDC token for a (short-lived) TPP access token. Only supported with JWT authentication introduced in 22.4.
tpp_bundle
/ VSIGN_TRUST_BUNDLE
= Path to certificate chain in case of private chain of trust for Venafi TPP VOC
vsign sign --config test/config.ini --output-signature test/output.sig --payload test/data.txt --mechanism 64
- Refer to vSign Mechanism compatibility guide for list of supported Venafi CodeSign Protect PKCS#11 mechanisms
- IMPORTANT: Client-side hashing mechanisms are the preferred approach for signing payloads. vSign will automatically detect if you are attempting to sign a large payload with a server-side hashing mechanism and terminate.
vsign verify --digest sha256 --signature output.sig --payload data.txt --key my.pub
vsign jwt --config test/config.ini --header test/jwt_header.json --payload test/jwt_payload.json
- Refer to CodeSign Protect Developer guide for list of supported JWT signing algorithms
vsign getcred --url https://tpp.example.com --username test-cs-user --password MyPassword1234!
access_token: P1sfL7l4uCWwH/zMkJY7IA==
vsign getcred --url https://tpp.example.com --jwt ey...
access_token: P1sfL7l4uCWwH/zMkJY7IA==
Inspired by the Digitorus pdfsign project
vsign sign --config test/config.ini --payload test/dummy.pdf --output-signature test/dummy-signed.pdf --digest sha256 --mechanism 1 --name "John Doe" --location "Pleasantville" --reason "Contract" --contact "john@doe.com"
vSign relies on a compliant PDF document for successful signing and verification. In the scenario where the originating PDF tool produces a malformed PDF, such as with the following error: malformed PDF: malformed xref table
, it may be possible to repair the PDF using tools such as from qpdf.
Example:
qpdf invalid.pdf repaired.pdf
You can also analyze the PDF as follows:
qpdf --check invalid.pdf
checking invalid.pdf
PDF Version: 1.6
File is not encrypted
File is linearized
WARNING: invalid.pdf: page 0 has shared identifier entries
WARNING: invalid.pdf: page 0: shared object 6: in hint table but not computed list
qpdf: operation succeeded with warnings
vsign verify --config test/config.ini --payload test/dummy.pdf --signature test/dummy-signed.pdf --digest sha256
Refer here to use cases we are looking at officially supporting in the near future.