26a2859eb49d5082c74b1a8ae54c0a6081c4ffad
The CSS (DVD-Video) bus-auth unlocker as a first-class external plugin, peer to freemkv-unlock-ld. CssUnlocker impls libfreemkv::Unlocker — matches DiscKind::Css, self-guards against the hardware (refuses NotApplicable without issuing a CSS CDB if the drive reports a non-DVD profile), then runs the libfreemkv bus-auth primitive (unlock_css_reads). libfreemkv keeps the bus-auth + keyless descramble; this crate owns the unlocker impl. Additive: a consuming binary opts in with one register_unlocker(CssUnlocker::new()) line; the in-tree built-in stays until clients are rewired.
freemkv-unlock
Unlocker plugins for libfreemkv.
libfreemkv ships only the pluggable Unlocker trait + registry and stays
firmware-clean — it contains no concrete unlock code. Each crate in this
workspace implements one unlocker and is registered into libfreemkv by a single
line in the consuming binary:
libfreemkv::register_unlocker(Box::new(my_unlocker::MyUnlocker::new()));
Removing an unlocker is deleting that one line and the dependency (delete-to-comply).
Members
Each member is a self-contained unlocker plugin — see its own README for details.
License: AGPL-3.0-only.
Languages
Rust
100%