#[repr(C)]pub struct evp_hpke_ctx_st {
pub kem: *const EVP_HPKE_KEM,
pub aead: *const EVP_HPKE_AEAD,
pub kdf: *const EVP_HPKE_KDF,
pub aead_ctx: EVP_AEAD_CTX,
pub base_nonce: [u8; 24],
pub exporter_secret: [u8; 64],
pub seq: u64,
pub is_sender: c_int,
}
Fields§
§kem: *const EVP_HPKE_KEM
§aead: *const EVP_HPKE_AEAD
§kdf: *const EVP_HPKE_KDF
§aead_ctx: EVP_AEAD_CTX
§base_nonce: [u8; 24]
§exporter_secret: [u8; 64]
§seq: u64
§is_sender: c_int
Trait Implementations§
Source§impl Clone for evp_hpke_ctx_st
impl Clone for evp_hpke_ctx_st
Source§fn clone(&self) -> evp_hpke_ctx_st
fn clone(&self) -> evp_hpke_ctx_st
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for evp_hpke_ctx_st
impl Default for evp_hpke_ctx_st
impl Copy for evp_hpke_ctx_st
Auto Trait Implementations§
impl Freeze for evp_hpke_ctx_st
impl RefUnwindSafe for evp_hpke_ctx_st
impl !Send for evp_hpke_ctx_st
impl !Sync for evp_hpke_ctx_st
impl Unpin for evp_hpke_ctx_st
impl UnwindSafe for evp_hpke_ctx_st
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more