Lines Matching refs:Certificate
17 certs []*Certificate
42 // given certificate. If any candidates were rejected then errCert will be set
45 func (s *CertPool) findVerifiedParents(cert *Certificate) (parents []int, errCert *Certificate, err error) {
69 func (s *CertPool) contains(cert *Certificate) bool {
84 // AddCert adds a certificate to a pool.
85 func (s *CertPool) AddCert(cert *Certificate) {
87 panic("adding nil Certificate to CertPool")
90 // Check that the certificate isn't being added twice.
119 if block.Type != "CERTIFICATE" || len(block.Headers) != 0 {