Commit 1a288da8 authored by Steven Fackler's avatar Steven Fackler
Browse files

Make verification unconditionally exposed internally

parent c0cf4ab1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -42,6 +42,8 @@ pub mod ssl;
pub mod symm;
pub mod version;
pub mod x509;
#[cfg(any(ossl102, ossl110))]
mod verify;

pub fn cvt_p<T>(r: *mut T) -> Result<*mut T, ErrorStack> {
    if r.is_null() {
+0 −0

File moved.

+4 −4
Original line number Diff line number Diff line
@@ -37,12 +37,12 @@ use ffi::{
    ASN1_STRING_get0_data as ASN1_STRING_data,
};

pub mod extension;

#[cfg(any(all(feature = "v102", ossl102), all(feature = "v110", ossl110)))]
pub mod verify;
pub use verify;

use self::extension::{ExtensionType, Extension};
use x509::extension::{ExtensionType, Extension};

pub mod extension;

#[cfg(test)]
mod tests;