Client implementation for the Go signer
Jan Dittberner
c65853d1f9
This commit adds code to allow the generation of a default client configuration. The generator is run instead of the regular client code, when the option -generate-config is passed on the command line. |
||
---|---|---|
cmd/signerclient | ||
internal | ||
.gitattributes | ||
.gitignore | ||
.golangci.yml | ||
.goreleaser.yaml | ||
go.mod | ||
go.sum | ||
LICENSE | ||
Makefile | ||
README.md |
CAcert signer client
This is the CAcert signer client implementation that sends commands to the signer and handles certificate revocation lists (CRLs), OpenPGP public key signatures and X.509 certificates.
Development preconditions
You will need GNU make to build the application. On Debian systems you can install GNU make using:
sudo apt install make
Install go >= 1.17, golangci-lint >= 1.50.0 and goreleaser, as these are used for building and linting the application.
Read the documentation of these tools, to find out how to use them.
Building the binary
There is a Makefile
to build the signerclient binary. Run
make
to run linting, tests and binary builds.