Type Alias X509V3_EXT_METHOD
Source pub type X509V3_EXT_METHOD = v3_ext_method;
#[repr(C)]
pub struct X509V3_EXT_METHOD {Show 14 fields
pub ext_nid: i32,
pub ext_flags: i32,
pub it: *const ASN1_ITEM_st,
pub ext_new: Option<unsafe extern "C" fn() -> *mut c_void>,
pub ext_free: Option<unsafe extern "C" fn(*mut c_void)>,
pub d2i: Option<unsafe extern "C" fn(*mut c_void, *mut *const u8, i64) -> *mut c_void>,
pub i2d: Option<unsafe extern "C" fn(*mut c_void, *mut *mut u8) -> i32>,
pub i2s: Option<unsafe extern "C" fn(*const v3_ext_method, *mut c_void) -> *mut i8>,
pub s2i: Option<unsafe extern "C" fn(*const v3_ext_method, *const v3_ext_ctx, *const i8) -> *mut c_void>,
pub i2v: Option<unsafe extern "C" fn(*const v3_ext_method, *mut c_void, *mut stack_st_CONF_VALUE) -> *mut stack_st_CONF_VALUE>,
pub v2i: Option<unsafe extern "C" fn(*const v3_ext_method, *const v3_ext_ctx, *const stack_st_CONF_VALUE) -> *mut c_void>,
pub i2r: Option<unsafe extern "C" fn(*const v3_ext_method, *mut c_void, *mut bio_st, i32) -> i32>,
pub r2i: Option<unsafe extern "C" fn(*const v3_ext_method, *const v3_ext_ctx, *const i8) -> *mut c_void>,
pub usr_data: *mut c_void,
}