File: README.md

package info (click to toggle)
golang-github-sigstore-sigstore 1.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,052 kB
  • sloc: makefile: 87; sh: 45
file content (14 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Local KMS

This module is an example implementation of a KMS plugin.
See [cliplugin](../../../pkg/signature/kms/cliplugin/).

The Key Ref is a path to a RSA private key on your system. Don't do this in your own real implementation!
The for the sigstore library to invoke the plugin program, the binary must be on your system's PATH.

```shell
mkdir -p ../bin
go build -o ../bin/sigstore-kms-localkms

cosign [sub command] [options] --key localkms://[path to private key]
```