Trait http_signature_normalization_actix::digest::DigestCreate[][src]

pub trait DigestCreate {
    const NAME: &'static str;

    fn compute(&mut self, input: &[u8]) -> String;
}

A trait for creating digests of an array of bytes

Associated Constants

const NAME: &'static str[src]

The name of the digest algorithm

Loading content...

Required methods

fn compute(&mut self, input: &[u8]) -> String[src]

Compute the digest of the input bytes

Loading content...

Implementations on Foreign Types

impl DigestCreate for Sha224[src]

impl DigestCreate for Sha256[src]

impl DigestCreate for Sha384[src]

impl DigestCreate for Sha512[src]

impl DigestCreate for Sha512Trunc224[src]

impl DigestCreate for Sha512Trunc256[src]

impl DigestCreate for Sha3_224[src]

impl DigestCreate for Sha3_256[src]

impl DigestCreate for Sha3_384[src]

impl DigestCreate for Sha3_512[src]

impl DigestCreate for Keccak224[src]

impl DigestCreate for Keccak256[src]

impl DigestCreate for Keccak256Full[src]

impl DigestCreate for Keccak384[src]

impl DigestCreate for Keccak512[src]

Loading content...

Implementors

Loading content...