use crate::crc16::{finalize, init, update_nolookup};
use crate::*;
impl Crc<u16, NoTable> {
pub const fn new(algorithm: &'static Algorithm<u16>) -> Self {
Self {
algorithm,
data: [],
}
}
pub const fn checksum(&self, bytes: &[u8]) -> u16 {
let mut crc = init(self.algorithm, self.algorithm.init);
crc = self.update(crc, bytes);
finalize(self.algorithm, crc)
}
const fn update(&self, crc: u16, bytes: &[u8]) -> u16 {
update_nolookup(crc, self.algorithm, bytes)
}
pub const fn digest(&self) -> Digest<u16, NoTable> {
self.digest_with_initial(self.algorithm.init)
}
pub const fn digest_with_initial(&self, initial: u16) -> Digest<u16, NoTable> {
let value = init(self.algorithm, initial);
Digest::new(self, value)
}
}
impl<'a> Digest<'a, u16, NoTable> {
const fn new(crc: &'a Crc<u16, NoTable>, value: u16) -> Self {
Digest { crc, value }
}
pub fn update(&mut self, bytes: &[u8]) {
self.value = self.crc.update(self.value, bytes);
}
pub const fn finalize(self) -> u16 {
finalize(self.crc.algorithm, self.value)
}
}