e2e-protection 0.4.0

End-to-End protection core with pluggable profiles. AUTOSAR profile family is optional via feature
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! AUTOSAR-like profiles (gated by `features = ["autosar"]`).
//!
//! This module provides:
//! - `profile11`: 4-bit counter, CRC-8/SAE-J1850 (poly 0x1D), DataID 16 or 12 (nibble mode).
//! - `profile22`: 4-bit counter, CRC-8/H2F (poly 0x2F), DataIDList[16] mapping.
//!
//! The exact wire offsets and list-based DataID semantics follow the spec intent
//! in a small, easy-to-integrate shape suitable for CAN/FlexRay-like frames.

pub mod profile07;
pub mod profile08;
pub mod profile11;
pub mod profile22;
pub mod profile44;
pub mod profile4m;
pub mod profile7m;