aws_lc_sys

Type Alias EVP_MD_CTX

Source
pub type EVP_MD_CTX = env_md_ctx_st;

Aliased Type§

struct EVP_MD_CTX {
    pub digest: *const env_md_st,
    pub md_data: *mut c_void,
    pub update: Option<unsafe extern "C" fn(_: *mut env_md_ctx_st, _: *const c_void, _: usize) -> i32>,
    pub pctx: *mut evp_pkey_ctx_st,
    pub pctx_ops: *const evp_md_pctx_ops,
    pub flags: u64,
}

Fields§

§digest: *const env_md_st§md_data: *mut c_void§update: Option<unsafe extern "C" fn(_: *mut env_md_ctx_st, _: *const c_void, _: usize) -> i32>§pctx: *mut evp_pkey_ctx_st§pctx_ops: *const evp_md_pctx_ops§flags: u64

Trait Implementations

Source§

impl Clone for env_md_ctx_st

Source§

fn clone(&self) -> env_md_ctx_st

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for env_md_ctx_st

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for env_md_ctx_st

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for env_md_ctx_st

Source§

fn eq(&self, other: &env_md_ctx_st) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for env_md_ctx_st

Source§

impl Eq for env_md_ctx_st

Source§

impl StructuralPartialEq for env_md_ctx_st