[−][src]Struct crc_any::CRCu64
This struct can help you compute a CRC-64 (or CRC-x where x is equal or less than 64
) value.
Implementations
impl CRCu64
[src]
pub fn create_crc(
poly: u64,
bits: u8,
initial: u64,
final_xor: u64,
reflect: bool
) -> CRCu64
[src]
poly: u64,
bits: u8,
initial: u64,
final_xor: u64,
reflect: bool
) -> CRCu64
Create a CRCu64
instance by providing 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 reset(&mut self)
[src]
Reset the sum.
pub fn get_crc(&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.
impl CRCu64
[src]
pub fn get_crc_vec_le(&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 get_crc_vec_be(&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.
impl CRCu64
[src]
pub fn crc40gsm() -> CRCu64
[src]
Check | Poly | Init | Ref | XorOut |
---|---|---|---|---|
0xD4164FC646 | 0x0004820009 | 0x0000000000 | false | 0xFFFFFFFFFF |
let mut crc = CRCu64::crc40gsm(); crc.digest(b"123456789"); assert_eq!("0xD4164FC646", &crc.to_string());
pub fn crc64() -> CRCu64
[src]
Check | Poly | Init | Ref | XorOut |
---|---|---|---|---|
0x6C40DF5F0B497347 | 0x42F0E1EBA9EA3693 | 0x0000000000000000 | false | 0x0000000000000000 |
let mut crc = CRCu64::crc64(); crc.digest(b"123456789"); assert_eq!("0x6C40DF5F0B497347", &crc.to_string());
pub fn crc64iso() -> CRCu64
[src]
Check | Poly | Init | Ref | XorOut |
---|---|---|---|---|
0xB90956C775A41001 | 0x000000000000001B (rev: 0xD800000000000000) | 0xFFFFFFFFFFFFFFFF | true | 0xFFFFFFFFFFFFFFFF |
let mut crc = CRCu64::crc64iso(); crc.digest(b"123456789"); assert_eq!("0xB90956C775A41001", &crc.to_string());
pub fn crc64we() -> CRCu64
[src]
Check | Poly | Init | Ref | XorOut |
---|---|---|---|---|
0x62EC59E3F1A4F00A | 0x42F0E1EBA9EA3693 | 0xFFFFFFFFFFFFFFFF | false | 0xFFFFFFFFFFFFFFFF |
let mut crc = CRCu64::crc64we(); crc.digest(b"123456789"); assert_eq!("0x62EC59E3F1A4F00A", &crc.to_string());
pub fn crc64jones() -> CRCu64
[src]
Check | Poly | Init | Ref | XorOut |
---|---|---|---|---|
0xE9C6D914C4B8D9CA | 0xAD93D23594C935A9 (rev: 0x95AC9329AC4BC9B5) | 0x0000000000000000 | true | 0x0000000000000000 |
let mut crc = CRCu64::crc64jones(); crc.digest(b"123456789"); assert_eq!("0xE9C6D914C4B8D9CA", &crc.to_string());
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,