Update some X509_CRL bindings for libressl281

This commit is contained in:
Stefan Bühler 2020-09-27 17:28:18 +02:00
parent f83ed2e074
commit df0ad695a1
1 changed files with 4 additions and 4 deletions

View File

@ -401,13 +401,13 @@ extern "C" {
serial: *mut ASN1_INTEGER, serial: *mut ASN1_INTEGER,
) -> c_int; ) -> c_int;
#[cfg(ossl110)] #[cfg(any(ossl110, libressl281))]
pub fn X509_CRL_get_REVOKED(crl: *mut X509_CRL) -> *mut stack_st_X509_REVOKED; pub fn X509_CRL_get_REVOKED(crl: *mut X509_CRL) -> *mut stack_st_X509_REVOKED;
#[cfg(ossl110)] #[cfg(any(ossl110, libressl281))]
pub fn X509_CRL_get0_nextUpdate(x: *const X509_CRL) -> *const ASN1_TIME; pub fn X509_CRL_get0_nextUpdate(x: *const X509_CRL) -> *const ASN1_TIME;
#[cfg(ossl110)] #[cfg(any(ossl110, libressl281))]
pub fn X509_CRL_get0_lastUpdate(x: *const X509_CRL) -> *const ASN1_TIME; pub fn X509_CRL_get0_lastUpdate(x: *const X509_CRL) -> *const ASN1_TIME;
#[cfg(ossl110)] #[cfg(any(ossl110, libressl281))]
pub fn X509_CRL_get_issuer(x: *const X509_CRL) -> *mut X509_NAME; pub fn X509_CRL_get_issuer(x: *const X509_CRL) -> *mut X509_NAME;
#[cfg(ossl110)] #[cfg(ossl110)]