Function d2i_ECParameters

Source
pub unsafe extern "C" fn d2i_ECParameters(
    key: *mut *mut ec_key_st,
    in_: *mut *const u8,
    len: i64,
) -> *mut ec_key_st
Expand description

Decodes ec parameter from a memory buffer. \param key a pointer to a EC_KEY object which should be used (or NULL) \param in pointer to memory with the DER encoded ec parameters \param len length of the DER encoded ec parameters \return a EC_KEY object with the decoded parameters or NULL if an error occurred.