Documentation
¶
Overview ¶
Example ¶
package main
import (
"context"
"crypto/rand"
"crypto/x509"
"fmt"
"log"
"math/big"
kms "cloud.google.com/go/kms/apiv1"
"github.com/atotto/cloudkms"
)
func main() {
ctx := context.Background()
client, err := kms.NewKeyManagementClient(ctx)
if err != nil {
log.Fatal(err)
}
signer, err := cloudkms.NewSigner(client, "projects/<project>/locations/<location>/keyRings/<keyRing>/cryptoKeys/<key>/cryptoKeyVersions/<version>")
if err != nil {
log.Fatal(err)
}
rootCa := &x509.Certificate{
SerialNumber: big.NewInt(1),
// TODO: fill
}
data, _ := x509.CreateCertificate(rand.Reader, rootCa, rootCa, signer.Public(), signer)
cert, _ := x509.ParseCertificate(data)
// Sign
msg := "hello, world"
h := signer.HashFunc().New()
h.Write([]byte(msg))
digest := h.Sum(nil)
signature, err := signer.Sign(rand.Reader, digest, nil)
if err != nil {
log.Fatal(err)
}
// Verify Signature
if err := cert.CheckSignature(cert.SignatureAlgorithm, []byte(msg), signature); err != nil {
log.Fatal(err)
}
fmt.Println("OK")
}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.