mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
config: sign Azure versions on upload & verify on fetch (#1836)
* add SignContent() + integrate into configAPI * use static client for upload versions tool; fix staticupload calleeReference bug * use version to get proper cosign pub key. * mock fetcher in CLI tests * only provide config.New constructor with fetcher Co-authored-by: Otto Bittner <cobittner@posteo.net> Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com>
This commit is contained in:
parent
e0285c122e
commit
b51cc52945
55 changed files with 752 additions and 308 deletions
71
internal/sigstore/sign.go
Normal file
71
internal/sigstore/sign.go
Normal file
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
Copyright (c) Edgeless Systems GmbH
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
package sigstore
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto"
|
||||
"crypto/ecdsa"
|
||||
"crypto/ed25519"
|
||||
"crypto/rsa"
|
||||
"crypto/x509"
|
||||
"encoding/base64"
|
||||
"encoding/pem"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/sigstore/sigstore/pkg/signature"
|
||||
"github.com/theupdateframework/go-tuf/encrypted"
|
||||
)
|
||||
|
||||
const (
|
||||
cosignPrivateKeyPemType = "ENCRYPTED COSIGN PRIVATE KEY"
|
||||
sigstorePrivateKeyPemType = "ENCRYPTED SIGSTORE PRIVATE KEY"
|
||||
)
|
||||
|
||||
// SignContent signs the content with the cosign encrypted private key and corresponding cosign password.
|
||||
func SignContent(password, encryptedPrivateKey, content []byte) ([]byte, error) {
|
||||
sv, err := loadPrivateKey(encryptedPrivateKey, password)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("loading private key: %w", err)
|
||||
}
|
||||
sig, err := sv.SignMessage(bytes.NewReader(content))
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("signing message: %w", err)
|
||||
}
|
||||
return []byte(base64.StdEncoding.EncodeToString(sig)), nil
|
||||
}
|
||||
|
||||
func loadPrivateKey(key []byte, pass []byte) (signature.SignerVerifier, error) {
|
||||
// Decrypt first
|
||||
p, _ := pem.Decode(key)
|
||||
if p == nil {
|
||||
return nil, errors.New("invalid pem block")
|
||||
}
|
||||
if p.Type != cosignPrivateKeyPemType && p.Type != sigstorePrivateKeyPemType {
|
||||
return nil, fmt.Errorf("unsupported pem type: %s", p.Type)
|
||||
}
|
||||
|
||||
x509Encoded, err := encrypted.Decrypt(p.Bytes, pass)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("decrypt: %w", err)
|
||||
}
|
||||
|
||||
pk, err := x509.ParsePKCS8PrivateKey(x509Encoded)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("parsing private key: %w", err)
|
||||
}
|
||||
switch pk := pk.(type) {
|
||||
case *rsa.PrivateKey:
|
||||
return signature.LoadRSAPKCS1v15SignerVerifier(pk, crypto.SHA256)
|
||||
case *ecdsa.PrivateKey:
|
||||
return signature.LoadECDSASignerVerifier(pk, crypto.SHA256)
|
||||
case ed25519.PrivateKey:
|
||||
return signature.LoadED25519SignerVerifier(pk)
|
||||
default:
|
||||
return nil, errors.New("unsupported key type")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue