certificates/authority/root.go

60 lines
1.8 KiB
Go
Raw Normal View History

2018-10-05 21:48:36 +00:00
package authority
import (
"crypto/x509"
2020-01-24 06:04:34 +00:00
"github.com/smallstep/certificates/errs"
2018-10-05 21:48:36 +00:00
)
// Root returns the certificate corresponding to the given SHA sum argument.
func (a *Authority) Root(sum string) (*x509.Certificate, error) {
val, ok := a.certificates.Load(sum)
if !ok {
2020-01-24 06:04:34 +00:00
return nil, errs.NotFound("certificate with fingerprint %s was not found", sum)
2018-10-05 21:48:36 +00:00
}
crt, ok := val.(*x509.Certificate)
if !ok {
2020-01-24 06:04:34 +00:00
return nil, errs.InternalServer("stored value is not a *x509.Certificate")
2018-10-05 21:48:36 +00:00
}
return crt, nil
}
// GetRootCertificate returns the server root certificate.
func (a *Authority) GetRootCertificate() *x509.Certificate {
2019-01-07 23:30:28 +00:00
return a.rootX509Certs[0]
}
// GetRootCertificates returns the server root certificates.
//
// In the Authority interface we also have a similar method, GetRoots, at the
// moment the functionality of these two methods are almost identical, but this
// method is intended to be used internally by CA HTTP server to load the roots
// that will be set in the tls.Config while GetRoots will be used by the
// Authority interface and might have extra checks in the future.
2019-01-07 23:30:28 +00:00
func (a *Authority) GetRootCertificates() []*x509.Certificate {
return a.rootX509Certs
2018-10-05 21:48:36 +00:00
}
// GetRoots returns all the root certificates for this CA.
// This method implements the Authority interface.
func (a *Authority) GetRoots() ([]*x509.Certificate, error) {
return a.rootX509Certs, nil
}
// GetFederation returns all the root certificates in the federation.
// This method implements the Authority interface.
func (a *Authority) GetFederation() (federation []*x509.Certificate, err error) {
a.certificates.Range(func(k, v interface{}) bool {
crt, ok := v.(*x509.Certificate)
if !ok {
federation = nil
2020-01-24 06:04:34 +00:00
err = errs.InternalServer("stored value is not a *x509.Certificate")
return false
}
federation = append(federation, crt)
return true
})
return
}