pub struct HpkePrivateKey { /* private fields */ }
Expand description
An HPKE private key is a byte vector.
Implementations§
Trait Implementations§
Source§impl Debug for HpkePrivateKey
impl Debug for HpkePrivateKey
Source§impl Default for HpkePrivateKey
impl Default for HpkePrivateKey
Source§fn default() -> HpkePrivateKey
fn default() -> HpkePrivateKey
Returns the “default value” for a type. Read more
Source§impl From<&[u8]> for HpkePrivateKey
impl From<&[u8]> for HpkePrivateKey
Source§impl PartialEq for HpkePrivateKey
Hopefully constant time comparison of the two values as long as they have the
same length.
impl PartialEq for HpkePrivateKey
Hopefully constant time comparison of the two values as long as they have the same length.
Auto Trait Implementations§
impl Freeze for HpkePrivateKey
impl RefUnwindSafe for HpkePrivateKey
impl Send for HpkePrivateKey
impl Sync for HpkePrivateKey
impl Unpin for HpkePrivateKey
impl UnwindSafe for HpkePrivateKey
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