type crypto/x509.CertPool
25 uses
crypto/x509 (current package)
cert_pool.go#L17: type CertPool struct {
cert_pool.go#L59: func NewCertPool() *CertPool {
cert_pool.go#L60: return &CertPool{
cert_pool.go#L68: func (s *CertPool) len() int {
cert_pool.go#L76: func (s *CertPool) cert(n int) (*Certificate, error) {
cert_pool.go#L81: func (s *CertPool) Clone() *CertPool {
cert_pool.go#L82: p := &CertPool{
cert_pool.go#L111: func SystemCertPool() (*CertPool, error) {
cert_pool.go#L121: func (s *CertPool) findPotentialParents(cert *Certificate) []*Certificate {
cert_pool.go#L161: func (s *CertPool) contains(cert *Certificate) bool {
cert_pool.go#L169: func (s *CertPool) AddCert(cert *Certificate) {
cert_pool.go#L183: func (s *CertPool) addCertFunc(rawSum224 sum224, rawSubject string, getCert func() (*Certificate, error)) {
cert_pool.go#L207: func (s *CertPool) AppendCertsFromPEM(pemCerts []byte) (ok bool) {
cert_pool.go#L246: func (s *CertPool) Subjects() [][]byte {
cert_pool.go#L255: func (s *CertPool) Equal(other *CertPool) bool {
root.go#L15: systemRoots *CertPool
root.go#L20: func systemRootsPool() *CertPool {
root.go#L51: func SetFallbackRoots(roots *CertPool) {
root_unix.go#L32: func loadSystemRoots() (*CertPool, error) {
verify.go#L184: Intermediates *CertPool
verify.go#L187: Roots *CertPool
crypto/tls
common.go#L635: RootCAs *x509.CertPool
common.go#L658: ClientCAs *x509.CertPool
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |