1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package x509util
import (
"crypto/x509"
"crypto/x509/pkix"
"time"
"github.com/pkg/errors"
)
// DefaultRootCertValidity is the default validity of a root certificate in the step PKI.
var DefaultRootCertValidity = time.Hour * 24 * 365 * 10
// Root implements the Profile for a root certificate.
type Root struct {
base
}
// DefaultDuration returns the default Root Certificate duration.
func (r *Root) DefaultDuration() time.Duration {
return DefaultRootCertValidity
}
// NewRootProfile returns a new root x509 Certificate profile.
func NewRootProfile(name string, withOps ...WithOption) (Profile, error) {
crt := defaultRootTemplate(name)
return NewRootProfileWithTemplate(crt, withOps...)
}
// NewRootProfileWithTemplate returns a new root x509 Certificate profile.
func NewRootProfileWithTemplate(crt *x509.Certificate, withOps ...WithOption) (Profile, error) {
p, err := newProfile(&Root{}, crt, crt, nil, withOps...)
if err != nil {
return nil, errors.WithStack(err)
}
// self-signed certificate
p.SetIssuerPrivateKey(p.SubjectPrivateKey())
return p, nil
}
func defaultRootTemplate(cn string) *x509.Certificate {
notBefore := time.Now()
return &x509.Certificate{
IsCA: true,
NotBefore: notBefore,
NotAfter: notBefore.Add(DefaultRootCertValidity),
KeyUsage: x509.KeyUsageCertSign | x509.KeyUsageCRLSign,
BasicConstraintsValid: true,
MaxPathLen: 1,
MaxPathLenZero: false,
Issuer: pkix.Name{CommonName: cn},
Subject: pkix.Name{CommonName: cn},
}
}
|