Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/crypto/x509/x509.go

    		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
    		if err != nil {
    			return nil, err
    		}
    		tbsCertList.Extensions = append(tbsCertList.Extensions, aki)
    	}
    
    	tbsCertListContents, err := asn1.Marshal(tbsCertList)
    	if err != nil {
    		return nil, err
    	}
    	tbsCertList.Raw = tbsCertListContents
    
    	signature, err := signTBS(tbsCertListContents, key, signatureAlgorithm, rand)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. 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)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    		if err != nil {
    			t.Errorf("%s: error reparsing CRL: %s", test.name, err)
    			continue
    		}
    		if !reflect.DeepEqual(parsedCRL.TBSCertList.RevokedCertificates, expectedCerts) {
    			t.Errorf("%s: RevokedCertificates mismatch: got %v; want %v.", test.name,
    				parsedCRL.TBSCertList.RevokedCertificates, expectedCerts)
    		}
    	}
    }
    
    func fromBase64(in string) []byte {
    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

    		{"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},
    		{"Extension.Value", Field, 0},
    		{"Name", Type, 0},
    		{"Name.CommonName", 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 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
    pkg crypto/x509/pkix, type Extension struct, Critical bool
    pkg crypto/x509/pkix, type Extension struct, Id asn1.ObjectIdentifier
    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