Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CertificateList (0.22 sec)

  1. src/crypto/x509/pkix/pkix.go

    		if a.Type.Equal(oid) {
    			return true
    		}
    	}
    	return false
    }
    
    // CertificateList represents the ASN.1 structure of the same name. See RFC
    // 5280, section 5.1. Use Certificate.CheckCRLSignature to verify the
    // signature.
    //
    // Deprecated: x509.RevocationList should be used instead.
    type CertificateList struct {
    	TBSCertList        TBSCertificateList
    	SignatureAlgorithm AlgorithmIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    }
    
    // ParseDERCRL parses a DER encoded CRL from the given bytes.
    //
    // Deprecated: Use [ParseRevocationList] instead.
    func ParseDERCRL(derBytes []byte) (*pkix.CertificateList, error) {
    	certList := new(pkix.CertificateList)
    	if rest, err := asn1.Unmarshal(derBytes, certList); err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, errors.New("x509: trailing data after CRL")
    	}
    	return certList, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. api/go1.19.txt

    pkg crypto/x509, func ParseDERCRL //deprecated #50674
    pkg crypto/x509, method (*Certificate) CheckCRLSignature //deprecated #50674
    pkg crypto/x509, method (*Certificate) CreateCRL //deprecated #50674
    pkg crypto/x509/pkix, type CertificateList //deprecated #50674
    pkg crypto/x509/pkix, type TBSCertificateList //deprecated #50674
    pkg go/doc, func Synopsis //deprecated #51082
    pkg go/doc, func ToHTML //deprecated #51082
    pkg go/doc, func ToText //deprecated #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"AttributeTypeAndValueSET", Type, 3},
    		{"AttributeTypeAndValueSET.Type", Field, 3},
    		{"AttributeTypeAndValueSET.Value", Field, 3},
    		{"CertificateList", Type, 0},
    		{"CertificateList.SignatureAlgorithm", Field, 0},
    		{"CertificateList.SignatureValue", Field, 0},
    		{"CertificateList.TBSCertList", Field, 0},
    		{"Extension", Type, 0},
    		{"Extension.Critical", Field, 0},
    		{"Extension.Id", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg crypto/x509/pkix, type AttributeTypeAndValue struct, Value interface{}
    pkg crypto/x509/pkix, type CertificateList struct
    pkg crypto/x509/pkix, type CertificateList struct, SignatureAlgorithm AlgorithmIdentifier
    pkg crypto/x509/pkix, type CertificateList struct, SignatureValue asn1.BitString
    pkg crypto/x509/pkix, type CertificateList struct, TBSCertList TBSCertificateList
    pkg crypto/x509/pkix, type Extension struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top