pub trait CertDigestExt {
    // Required method
    fn from_slice(slice: &[u8]) -> Self;
}
Expand description

Extension trait for working with CertDigests.

Required Methods§

source

fn from_slice(slice: &[u8]) -> Self

Construct from a slice. Panicks if slice.len() != 32.

Implementors§