pub struct Context { /* private fields */ }
Expand description
A context for multi-step (Init-Update-Finish) digest calculations.
§Examples
use ring::digest;
let one_shot = digest::digest(&digest::SHA384, b"hello, world");
let mut ctx = digest::Context::new(&digest::SHA384);
ctx.update(b"hello");
ctx.update(b", ");
ctx.update(b"world");
let multi_part = ctx.finish();
assert_eq!(&one_shot.as_ref(), &multi_part.as_ref());
Implementations§
Source§impl Context
impl Context
Sourcepub fn serialize(&self) -> ContextData
pub fn serialize(&self) -> ContextData
Retrieves context data from current context states
Sourcepub fn deserialize(data: ContextData) -> Self
pub fn deserialize(data: ContextData) -> Self
Create context from stored context data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Context
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
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