Trait http_signature_normalization_actix::digest::DigestVerify[][src]

pub trait DigestVerify {
    fn update(&mut self, part: &[u8]);
fn verify(&mut self, digests: &[DigestPart]) -> bool; }

A trait for verifying digests

Required methods

fn update(&mut self, part: &[u8])[src]

Update the verifier with bytes from the request body

fn verify(&mut self, digests: &[DigestPart]) -> bool[src]

Verify the request body against the digests from the request headers

Loading content...

Implementations on Foreign Types

impl DigestVerify for Sha224[src]

impl DigestVerify for Sha256[src]

impl DigestVerify for Sha384[src]

impl DigestVerify for Sha512[src]

impl DigestVerify for Sha512Trunc224[src]

impl DigestVerify for Sha512Trunc256[src]

impl DigestVerify for Sha3_224[src]

impl DigestVerify for Sha3_256[src]

impl DigestVerify for Sha3_384[src]

impl DigestVerify for Sha3_512[src]

impl DigestVerify for Keccak224[src]

impl DigestVerify for Keccak256[src]

impl DigestVerify for Keccak256Full[src]

impl DigestVerify for Keccak384[src]

impl DigestVerify for Keccak512[src]

Loading content...

Implementors

Loading content...