Lines Matching refs:serial
248 /// Sets the serial number of the certificate.
524 /// Returns this certificate's authority serial number, if it exists.
648 /// Returns this certificate's serial number.
653 Asn1IntegerRef::from_const_ptr_opt(r).expect("serial number must not be null")
790 let serial = match &self.serial_number().to_bn() {
798 debug_struct.field("serial_number", &serial);
1684 /// Get the serial number of the revoked certificate
1797 "X509_CRL_get0_by_{{serial,cert}} should only return 0, 1, or 2."
1873 /// Get the revocation status of a certificate by its serial number
1875 pub fn get_by_serial<'a>(&'a self, serial: &Asn1IntegerRef) -> CrlStatus<'a> {
1879 ffi::X509_CRL_get0_by_serial(self.as_ptr(), &mut ret as *mut _, serial.as_ptr());