Properly marshal a certificate when we send it to linkedca.

This commit is contained in:
Mariano Cano 2021-07-26 14:31:42 -07:00
parent 4ad82a2f76
commit 3a00b6b396

View file

@ -6,7 +6,6 @@ import (
"crypto/sha256" "crypto/sha256"
"crypto/tls" "crypto/tls"
"crypto/x509" "crypto/x509"
"encoding/base64"
"encoding/hex" "encoding/hex"
"encoding/pem" "encoding/pem"
"fmt" "fmt"
@ -264,7 +263,7 @@ func (c *linkedCaClient) StoreSSHCertificate(crt *ssh.Certificate) error {
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second) ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer cancel() defer cancel()
_, err := c.client.PostSSHCertificate(ctx, &linkedca.SSHCertificateRequest{ _, err := c.client.PostSSHCertificate(ctx, &linkedca.SSHCertificateRequest{
Certificate: base64.StdEncoding.EncodeToString(crt.Marshal()), Certificate: string(ssh.MarshalAuthorizedKey(crt)),
}) })
return errors.Wrap(err, "error posting ssh certificate") return errors.Wrap(err, "error posting ssh certificate")
} }