Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TBSCertificateList (0.48 sec)

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

    type CertificateList struct {
    	TBSCertList        TBSCertificateList
    	SignatureAlgorithm AlgorithmIdentifier
    	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
    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

    // tbsCertificate and allowing raw (unparsed) subjects to be passed cleanly.
    type certificateList struct {
    	TBSCertList        tbsCertificateList
    	SignatureAlgorithm pkix.AlgorithmIdentifier
    	SignatureValue     asn1.BitString
    }
    
    type tbsCertificateList struct {
    	Raw                 asn1.RawContent
    	Version             int `asn1:"optional,default:0"`
    	Signature           pkix.AlgorithmIdentifier
    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, 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
    pkg io/ioutil, func NopCloser //deprecated #42026
    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

    		{"RevokedCertificate.SerialNumber", Field, 0},
    		{"TBSCertificateList", Type, 0},
    		{"TBSCertificateList.Extensions", Field, 0},
    		{"TBSCertificateList.Issuer", Field, 0},
    		{"TBSCertificateList.NextUpdate", Field, 0},
    		{"TBSCertificateList.Raw", Field, 0},
    		{"TBSCertificateList.RevokedCertificates", Field, 0},
    		{"TBSCertificateList.Signature", Field, 0},
    		{"TBSCertificateList.ThisUpdate", 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 TBSCertificateList struct
    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