|
1 month ago | |
---|---|---|
client | 1 month ago | |
cmd/signer | 1 month ago | |
datastructures | 1 month ago | |
shared | 1 month ago | |
signer | 1 month ago | |
.editorconfig | 1 month ago | |
.gitignore | 10 months ago | |
.golangci.yml | 1 month ago | |
README.md | 10 months ago | |
go.mod | 1 month ago | |
go.sum | 1 month ago |
This is a reimplementation of the CAcert signer code from the CommModule directory of the CAcert software in Go. The goal of this effort is to provide a more maintainable version of the software.
The signer is usually attached to a USB serial port. You can run the signer and client locally using the socat utility.
socat -d -d PTY,link=$(pwd)/ttyS0 PTY,link=$(pwd)/ttyS1
You may then run the server
go run signer/main.go -a $(pwd)/dev/ttyS0
and the client:
go run client/main.go -a $(pwd)/dev/ttyS1