type crypto/x509.CertPool

26 uses

	crypto/x509 (current package)
		cert_pool.go#L17: type CertPool struct {
		cert_pool.go#L64: func NewCertPool() *CertPool {
		cert_pool.go#L65: 	return &CertPool{
		cert_pool.go#L73: func (s *CertPool) len() int {
		cert_pool.go#L81: func (s *CertPool) cert(n int) (*Certificate, func([]*Certificate) error, error) {
		cert_pool.go#L87: func (s *CertPool) Clone() *CertPool {
		cert_pool.go#L88: 	p := &CertPool{
		cert_pool.go#L117: func SystemCertPool() (*CertPool, error) {
		cert_pool.go#L132: func (s *CertPool) findPotentialParents(cert *Certificate) []potentialParent {
		cert_pool.go#L172: func (s *CertPool) contains(cert *Certificate) bool {
		cert_pool.go#L180: func (s *CertPool) AddCert(cert *Certificate) {
		cert_pool.go#L194: func (s *CertPool) addCertFunc(rawSum224 sum224, rawSubject string, getCert func() (*Certificate, error), constraint func([]*Certificate) error) {
		cert_pool.go#L219: func (s *CertPool) AppendCertsFromPEM(pemCerts []byte) (ok bool) {
		cert_pool.go#L258: func (s *CertPool) Subjects() [][]byte {
		cert_pool.go#L267: func (s *CertPool) Equal(other *CertPool) bool {
		cert_pool.go#L287: func (s *CertPool) AddCertWithConstraint(cert *Certificate, constraint func([]*Certificate) error) {
		root.go#L25: 	systemRoots    *CertPool
		root.go#L30: func systemRootsPool() *CertPool {
		root.go#L61: func SetFallbackRoots(roots *CertPool) {
		root_unix.go#L32: func loadSystemRoots() (*CertPool, error) {
		verify.go#L185: 	Intermediates *CertPool
		verify.go#L188: 	Roots *CertPool

	crypto/tls
		common.go#L642: 	RootCAs *x509.CertPool
		common.go#L665: 	ClientCAs *x509.CertPool