Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NextUpdate (0.29 sec)

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

    	SignatureValue     asn1.BitString
    }
    
    // HasExpired reports whether certList should have been updated by now.
    func (certList *CertificateList) HasExpired(now time.Time) bool {
    	return !now.Before(certList.TBSCertList.NextUpdate)
    }
    
    // TBSCertificateList represents the ASN.1 structure of the same name. See RFC
    // 5280, section 5.1.
    //
    // Deprecated: x509.RevocationList should be used instead.
    type TBSCertificateList struct {
    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_test.go

    	certList, err := ParseDERCRL(derBytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	// indicates the issuance date of the CRL.
    	ThisUpdate time.Time
    	// NextUpdate is used to populate the nextUpdate field in the CRL, which
    	// indicates the date by which the next CRL will be issued. NextUpdate
    	// must be greater than ThisUpdate.
    	NextUpdate time.Time
    
    	// Extensions contains raw X.509 extensions. When creating a CRL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. api/go1.15.txt

    pkg crypto/x509, type RevocationList struct
    pkg crypto/x509, type RevocationList struct, ExtraExtensions []pkix.Extension
    pkg crypto/x509, type RevocationList struct, NextUpdate time.Time
    pkg crypto/x509, type RevocationList struct, Number *big.Int
    pkg crypto/x509, type RevocationList struct, RevokedCertificates []pkix.RevokedCertificate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  5. src/crypto/x509/parser.go

    	rl.ThisUpdate, err = parseTime(&tbs)
    	if err != nil {
    		return nil, err
    	}
    	if tbs.PeekASN1Tag(cryptobyte_asn1.GeneralizedTime) || tbs.PeekASN1Tag(cryptobyte_asn1.UTCTime) {
    		rl.NextUpdate, err = parseTime(&tbs)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	if tbs.PeekASN1Tag(cryptobyte_asn1.SEQUENCE) {
    		var revokedSeq cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"RevocationList.AuthorityKeyId", Field, 19},
    		{"RevocationList.Extensions", Field, 19},
    		{"RevocationList.ExtraExtensions", Field, 15},
    		{"RevocationList.Issuer", Field, 19},
    		{"RevocationList.NextUpdate", Field, 15},
    		{"RevocationList.Number", Field, 15},
    		{"RevocationList.Raw", Field, 19},
    		{"RevocationList.RawIssuer", Field, 19},
    		{"RevocationList.RawTBSRevocationList", Field, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg crypto/x509/pkix, type TBSCertificateList struct, Extensions []Extension
    pkg crypto/x509/pkix, type TBSCertificateList struct, Issuer RDNSequence
    pkg crypto/x509/pkix, type TBSCertificateList struct, NextUpdate time.Time
    pkg crypto/x509/pkix, type TBSCertificateList struct, Raw asn1.RawContent
    pkg crypto/x509/pkix, type TBSCertificateList struct, RevokedCertificates []RevokedCertificate
    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