[][src]Struct ssri::Integrity

pub struct Integrity {
    pub hashes: Vec<Hash>,
}

Representation of a full Subresource Integrity string.

Integrity can be used for parsing and also includes convenience methods for shorthand versions of Builder and Checker.

Fields

hashes: Vec<Hash>

Methods

impl Integrity[src]

pub fn pick_algorithm(&self) -> Algorithm[src]

Pick the most secure available Algorithm in this Integrity.

pub fn from<B: AsRef<[u8]>>(data: B, algorithm: Algorithm) -> Integrity[src]

Create a new Integrity based on data. Use Builder for more options.

pub fn concat(&self, other: Integrity) -> Self[src]

Join together two Integrity instances. Hashes will be bucketed by algorithm but otherwise kept in the same order.

pub fn check<B: AsRef<[u8]>>(self, data: B) -> Option<Algorithm>[src]

Check some data against this Integrity. For more options, use Checker. This method consumes self.

pub fn to_hex(&self) -> (Algorithm, String)[src]

Converts the first Hash in this Integrity into its hex string format.

Trait Implementations

impl Clone for Integrity[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Display for Integrity[src]

impl Debug for Integrity[src]

impl FromStr for Integrity[src]

type Err = ParseIntegrityError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Integrity

impl Sync for Integrity

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> ToString for T where
    T: Display + ?Sized
[src]

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