[][src]Struct ssri::IntegrityOpts

pub struct IntegrityOpts { /* fields omitted */ }

Builds a new Integrity, allowing multiple algorithms and incremental input.

Examples

use ssri::{Algorithm, IntegrityOpts};
let contents = b"hello world";
let sri = IntegrityOpts::new()
    .algorithm(Algorithm::Sha512)
    .algorithm(Algorithm::Sha1)
    .chain(&contents)
    .result();

Methods

impl IntegrityOpts[src]

pub fn new() -> IntegrityOpts[src]

Creates a new hashing IntegrityOpts.

pub fn algorithm(self, algo: Algorithm) -> Self[src]

Generate a hash for this algorithm. Can be called multiple times to generate an Integrity string with multiple entries.

pub fn input<B: AsRef<[u8]>>(&mut self, input: B)[src]

Add some data to this IntegrityOpts. All internal hashers will be updated for all configured Algorithms.

pub fn chain<B: AsRef<[u8]>>(self, input: B) -> Self[src]

Same as IntegrityOpts::input, but allows chaining.

pub fn reset(&mut self)[src]

Resets internal state for this IntegrityOpts.

pub fn result(self) -> Integrity[src]

Generate a new Integrity from the inputted data and configured algorithms.

Trait Implementations

impl Clone for IntegrityOpts[src]

impl Default for IntegrityOpts[src]

impl Input for IntegrityOpts[src]

impl Reset for IntegrityOpts[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self