Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TBSCertList (0.2 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)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top