Lines Matching refs:date
572 let date = X509_getm_notAfter(self.as_ptr());
573 Asn1TimeRef::from_const_ptr_opt(date).expect("not_after must not be null")
581 let date = X509_getm_notBefore(self.as_ptr());
582 Asn1TimeRef::from_const_ptr_opt(date).expect("not_before must not be null")
1674 /// Get the date that the certificate was revoked
1856 let date = X509_CRL_get0_lastUpdate(self.as_ptr());
1857 assert!(!date.is_null());
1858 Asn1TimeRef::from_ptr(date as *mut _)
1868 let date = X509_CRL_get0_nextUpdate(self.as_ptr());
1869 Asn1TimeRef::from_const_ptr_opt(date)