pub struct NssKeyLogEntry {
pub label: String,
pub client_random: Vec<u8>,
pub secret: Vec<u8>,
}Expand description
NSS key log file parser.
Parses NSS key log files (SSLKEYLOGFILE format) used by Wireshark for TLS session decryption.
Fields§
§label: StringLabel (e.g., “CLIENT_RANDOM”, “CLIENT_HANDSHAKE_TRAFFIC_SECRET”).
client_random: Vec<u8>Client random or other identifier (hex-encoded in the file, decoded here).
secret: Vec<u8>Secret value.
Trait Implementations§
Source§impl Clone for NssKeyLogEntry
impl Clone for NssKeyLogEntry
Source§fn clone(&self) -> NssKeyLogEntry
fn clone(&self) -> NssKeyLogEntry
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 moreAuto Trait Implementations§
impl Freeze for NssKeyLogEntry
impl RefUnwindSafe for NssKeyLogEntry
impl Send for NssKeyLogEntry
impl Sync for NssKeyLogEntry
impl Unpin for NssKeyLogEntry
impl UnsafeUnpin for NssKeyLogEntry
impl UnwindSafe for NssKeyLogEntry
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