pub struct KyberSecretKey(/* private fields */);Expand description
Kyber Secret Key (byte representation).
§Security Note
- Implements Zeroize for secure cleanup
- No direct byte access through traits
- All access must be explicit and auditable
Implementations§
Trait Implementations§
Source§impl Clone for KyberSecretKey
impl Clone for KyberSecretKey
Source§fn clone(&self) -> KyberSecretKey
fn clone(&self) -> KyberSecretKey
Returns a duplicate 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 Debug for KyberSecretKey
impl Debug for KyberSecretKey
Source§impl Drop for KyberSecretKey
impl Drop for KyberSecretKey
Source§impl SerializeSecret for KyberSecretKey
impl SerializeSecret for KyberSecretKey
Auto Trait Implementations§
impl Freeze for KyberSecretKey
impl RefUnwindSafe for KyberSecretKey
impl Send for KyberSecretKey
impl Sync for KyberSecretKey
impl Unpin for KyberSecretKey
impl UnwindSafe for KyberSecretKey
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