forked from TrueCloudLab/certificates
Add comment to differentiate GetRootCertificates and GetRoots.
This commit is contained in:
parent
6e620073f5
commit
e8ac3f4888
1 changed files with 8 additions and 0 deletions
|
@ -29,16 +29,24 @@ func (a *Authority) GetRootCertificate() *x509.Certificate {
|
|||
}
|
||||
|
||||
// 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.
|
||||
func (a *Authority) GetRootCertificates() []*x509.Certificate {
|
||||
return a.rootX509Certs
|
||||
}
|
||||
|
||||
// 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)
|
||||
|
|
Loading…
Reference in a new issue