Struct crypto::ghash::GhashWithC [-] [+] [src]

pub struct GhashWithC {
    // some fields omitted
}

A structure representing the state of a GHASH computation, after input for C was provided

Methods

impl GhashWithC

fn input_c(self, c: &[u8]) -> GhashWithC

Feeds data for GHASH's C input

fn result(self) -> [u8; 16]

Retrieve the digest result

Trait Implementations

Derived Implementations

impl Copy for GhashWithC