[][src]Struct crc_any::CRC

pub struct CRC { /* fields omitted */ }

This struct can help you compute a CRC value.

Methods

impl CRC[src]

pub fn create_crc(
    poly64: u64,
    bits: u8,
    initial: u64,
    final_xor: u64,
    reflect: bool
) -> CRC
[src]

Create a CRC instance by providing the length of bits, expression, reflection, an initial value and a final xor value.

pub fn create_crc_with_exists_lookup_table(
    lookup_table: [u64; 256],
    bits: u8,
    initial: u64,
    final_xor: u64,
    reflect: bool
) -> CRC
[src]

Create a CRC instance by providing an existing lookup table, the length of bits, expression, reflection, an initial value and a final xor value.

pub fn digest<T: ?Sized + AsRef<[u8]>>(&mut self, data: &T)[src]

Digest some data.

pub fn get_crc(&mut self) -> u64[src]

Get the current CRC value (it always returns a u64 value). You can continue calling digest method even after getting a CRC value.

pub fn get_crc_array(&mut self) -> ([u8; 8], usize)[src]

Get the current CRC value (it always returns a ([u8; 8], usize) tuple, where the second value of the tuple means the actual length of this CRC value). You can continue calling digest method even after getting a CRC value.

pub fn get_crc_vec(&mut self) -> Vec<u8>[src]

Get the current CRC value (it always returns a vec instance with a length corresponding to the CRC bits). You can continue calling digest method even after getting a CRC value.

pub fn crc64iso() -> CRC[src]

pub fn crc64ecma() -> CRC[src]

pub fn crc32ieee() -> CRC[src]

pub fn crc32mhash() -> CRC[src]

pub fn crc32c() -> CRC[src]

pub fn crc16ibm() -> CRC[src]

pub fn crc16ccitt() -> CRC[src]

pub fn crc8atm() -> CRC[src]

pub fn crc8cdma() -> CRC[src]

Trait Implementations

impl Debug for CRC[src]

Auto Trait Implementations

impl Send for CRC

impl Sync for CRC

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]