feat(crc): add ocaml-crc package with CRC-16/32/32C implementations
Pure OCaml table-based CRC checksums: CRC-16-CCITT (ITU-T V.41),
CRC-16-X.25, CRC-32 (ISO 3309), and CRC-32C (Castagnoli/RFC 3720).
All functions return native int (no Int32 boxing). Requires 64-bit OCaml.
Includes Alcotest vectors from ITU-T V.41, ISO 3309, RFC 3720 Section 12.1,
and Crowbar fuzz tests for string/bytes agreement, self-check residue,
range bounds, and determinism.