Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ParseCRL (0.16 sec)

  1. api/go1.19.txt

    pkg sync/atomic, type Uint64 struct #50860
    pkg sync/atomic, type Uintptr struct #50860
    pkg time, method (Duration) Abs() Duration #51414
    pkg time, method (Time) ZoneBounds() (Time, Time) #50062
    pkg crypto/x509, func ParseCRL //deprecated #50674
    pkg crypto/x509, func ParseDERCRL //deprecated #50674
    pkg crypto/x509, method (*Certificate) CheckCRLSignature //deprecated #50674
    pkg crypto/x509, method (*Certificate) CreateCRL //deprecated #50674
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    var pemType = "X509 CRL"
    
    // ParseCRL parses a CRL from the given bytes. It's often the case that PEM
    // encoded CRLs will appear where they should be DER encoded, so this function
    // will transparently handle PEM encoding as long as there isn't any leading
    // garbage.
    //
    // Deprecated: Use [ParseRevocationList] instead.
    func ParseCRL(crlBytes []byte) (*pkix.CertificateList, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	}
    	if !certList.TBSCertList.NextUpdate.IsZero() {
    		t.Errorf("NextUpdate is not the zero value")
    	}
    }
    
    func TestParsePEMCRL(t *testing.T) {
    	pemBytes := fromBase64(pemCRLBase64)
    	certList, err := ParseCRL(pemBytes)
    	if err != nil {
    		t.Errorf("error parsing: %s", err)
    		return
    	}
    	numCerts := len(certList.TBSCertList.RevokedCertificates)
    	expected := 2
    	if numCerts != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PEMCipher", Type, 1},
    		{"PEMCipher3DES", Const, 1},
    		{"PEMCipherAES128", Const, 1},
    		{"PEMCipherAES192", Const, 1},
    		{"PEMCipherAES256", Const, 1},
    		{"PEMCipherDES", Const, 1},
    		{"ParseCRL", Func, 0},
    		{"ParseCertificate", Func, 0},
    		{"ParseCertificateRequest", Func, 3},
    		{"ParseCertificates", Func, 0},
    		{"ParseDERCRL", Func, 0},
    		{"ParseECPrivateKey", Func, 1},
    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, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []uint8
    pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]uint8, error)
    pkg crypto/x509, func NewCertPool() *CertPool
    pkg crypto/x509, func ParseCRL([]uint8) (*pkix.CertificateList, error)
    pkg crypto/x509, func ParseCertificate([]uint8) (*Certificate, error)
    pkg crypto/x509, func ParseCertificates([]uint8) ([]*Certificate, error)
    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