Lines Matching refs:Asn1TimeRef
28 Asn1OctetStringRef, Asn1StringRef, Asn1TimeRef, Asn1Type,
228 pub fn set_not_after(&mut self, not_after: &Asn1TimeRef) -> Result<(), ErrorStack> {
234 pub fn set_not_before(&mut self, not_before: &Asn1TimeRef) -> Result<(), ErrorStack> {
570 pub fn not_after(&self) -> &Asn1TimeRef {
573 Asn1TimeRef::from_const_ptr_opt(date).expect("not_after must not be null")
579 pub fn not_before(&self) -> &Asn1TimeRef {
582 Asn1TimeRef::from_const_ptr_opt(date).expect("not_before must not be null")
1676 pub fn revocation_date(&self) -> &Asn1TimeRef {
1680 Asn1TimeRef::from_ptr(r as *mut _)
1854 pub fn last_update(&self) -> &Asn1TimeRef {
1858 Asn1TimeRef::from_ptr(date as *mut _)
1866 pub fn next_update(&self) -> Option<&Asn1TimeRef> {
1869 Asn1TimeRef::from_const_ptr_opt(date)