Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 704 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 704 Bytes

ksau-go

Development

Table of Content

Building the Project

To build ksau-go, there's one important detail to note. You will need to create crypto/credentials.go. Then, set constants named privkey which is a secret pgp key, and passphrase which is the passphrase for that secret pgp key (if any), else set an empty const.

Follow this template:

//go:build credentials
package crypto

const privkey string = `mykey`
const passphrase string = "mypassphrase"

Note

The //go:build credentials directive is not optional. do not omit it.

Then, run the following to build:

go build -tags credentials