Trait rustc_back::sha2::Digest
[−]
[src]
pub trait Digest { fn input(&mut self, input: &[u8]); fn result(&mut self, out: &mut [u8]); fn reset(&mut self); fn output_bits(&self) -> usize; fn input_str(&mut self, input: &str) { ... } fn result_bytes(&mut self) -> Vec<u8> { ... } fn result_str(&mut self) -> String { ... } }
Unstable (
rustc_private
)The Digest trait specifies an interface common to digest functions, such as SHA-1 and the SHA-2 family of digest functions.
Required Methods
fn input(&mut self, input: &[u8])
Unstable (
rustc_private
)fn result(&mut self, out: &mut [u8])
Unstable (
rustc_private
)Retrieve the digest result. This method may be called multiple times.
Arguments
- out - the vector to hold the result. Must be large enough to contain output_bits().
fn reset(&mut self)
Unstable (
rustc_private
)Reset the digest. This method must be called after result() and before supplying more data.
fn output_bits(&self) -> usize
Unstable (
rustc_private
)Get the output size in bits.
Provided Methods
fn input_str(&mut self, input: &str)
Unstable (
rustc_private
)Convenience function that feeds a string into a digest.
Arguments
input
The string to feed into the digest
fn result_bytes(&mut self) -> Vec<u8>
Unstable (
rustc_private
)Convenience function that retrieves the result of a digest as a newly allocated vec of bytes.
fn result_str(&mut self) -> String
Unstable (
rustc_private
)Convenience function that retrieves the result of a digest as a String in hexadecimal format.
Implementors
impl Digest for Sha256