certificates/scep/options.go

71 lines
2.6 KiB
Go
Raw Permalink Normal View History

2021-03-21 15:42:41 +00:00
package scep
import (
"crypto"
2021-03-26 14:22:04 +00:00
"crypto/rsa"
2021-03-21 15:42:41 +00:00
"crypto/x509"
2021-03-26 14:22:04 +00:00
"github.com/pkg/errors"
2021-03-21 15:42:41 +00:00
)
type Options struct {
// CertificateChain is the issuer certificate, along with any other bundled certificates
2021-03-26 14:22:04 +00:00
// to be returned in the chain for consumers. Configured in the ca.json crt property.
2021-03-21 15:42:41 +00:00
CertificateChain []*x509.Certificate
2021-03-26 14:22:04 +00:00
// Signer signs CSRs in SCEP. Configured in the ca.json key property.
2021-03-21 15:42:41 +00:00
Signer crypto.Signer `json:"-"`
2021-03-26 14:22:04 +00:00
// Decrypter decrypts encrypted SCEP messages. Configured in the ca.json key property.
2021-03-21 15:42:41 +00:00
Decrypter crypto.Decrypter `json:"-"`
}
// Validate checks the fields in Options.
func (o *Options) Validate() error {
2021-03-26 14:22:04 +00:00
if o.CertificateChain == nil {
return errors.New("certificate chain not configured correctly")
}
if len(o.CertificateChain) < 1 {
return errors.New("certificate chain should at least have one certificate")
}
// According to the RFC: https://tools.ietf.org/html/rfc8894#section-3.1, SCEP
// can be used with something different than RSA, but requires the encryption
// to be performed using the challenge password. An older version of specification
// states that only RSA is supported: https://tools.ietf.org/html/draft-nourse-scep-23#section-2.1.1
// Other algorithms than RSA do not seem to be supported in certnanny/sscep, but it might work
// in micromdm/scep. Currently only RSA is allowed, but it might be an option
// to try other algorithms in the future.
intermediate := o.CertificateChain[0]
if intermediate.PublicKeyAlgorithm != x509.RSA {
return errors.New("only the RSA algorithm is (currently) supported")
}
// TODO: add checks for key usage?
signerPublicKey, ok := o.Signer.Public().(*rsa.PublicKey)
if !ok {
return errors.New("only RSA public keys are (currently) supported as signers")
}
// check if the intermediate ca certificate has the same public key as the signer.
// According to the RFC it seems valid to have different keys for the intermediate
// and the CA signing new certificates, so this might change in the future.
if !signerPublicKey.Equal(intermediate.PublicKey) {
return errors.New("mismatch between certificate chain and signer public keys")
}
decrypterPublicKey, ok := o.Decrypter.Public().(*rsa.PublicKey)
if !ok {
return errors.New("only RSA public keys are (currently) supported as decrypters")
}
2021-03-26 14:24:27 +00:00
// check if intermediate public key is the same as the decrypter public key.
2021-03-26 14:22:04 +00:00
// In certnanny/sscep it's mentioned that the signing key can be different
// from the decrypting (and encrypting) key. Currently that's not supported.
if !decrypterPublicKey.Equal(intermediate.PublicKey) {
return errors.New("mismatch between certificate chain and decrypter public keys")
}
2021-03-21 15:42:41 +00:00
return nil
}