The AACS host-certificate bus-auth unlocker as a first-class external plugin, peer to freemkv-unlock-ld and freemkv-unlock-css. AacsUnlocker impls libfreemkv::Unlocker — matches DiscKind::Aacs, self-guards against the hardware (refuses NotApplicable without issuing a handshake CDB if the drive reports a non-Blu-ray profile), gathers host certs from the scan options, and runs the libfreemkv cert-handshake primitive to learn the Volume ID + bus key. libfreemkv keeps the handshake + AACS content decryption; this crate owns the unlocker. Additive: a consuming binary opts in with one register_unlocker(...) line.
16 lines
669 B
TOML
16 lines
669 B
TOML
# freemkv-unlock — unlocker plugins for libfreemkv.
|
|
#
|
|
# libfreemkv ships only the `Unlocker` trait + registry and stays firmware-clean.
|
|
# Each member here is one concrete unlocker, registered into libfreemkv by a
|
|
# single `register_unlocker(...)` line in the consuming binary — so dropping an
|
|
# unlocker is deleting that one line plus the dependency (delete-to-comply).
|
|
#
|
|
# Members:
|
|
# ld — LibreDrive (MediaTek MT1959 firmware unlock)
|
|
# aacs — AACS host-certificate bus-auth unlock (Blu-ray / UHD)
|
|
# css — CSS (DVD-Video) bus-auth unlock
|
|
# (future unlockers go here as additional members)
|
|
[workspace]
|
|
resolver = "2"
|
|
members = ["ld", "aacs", "css"]
|