From 472b44bf1bbeb34cf9c130b9cede0eac7a298e82 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Mar 2024 20:07:37 +0100 Subject: Add --decryption-key option to KDM CLI (#2790). --- src/lib/kdm_cli.cc | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/lib/kdm_cli.cc') diff --git a/src/lib/kdm_cli.cc b/src/lib/kdm_cli.cc index 244c108ad..5666da79b 100644 --- a/src/lib/kdm_cli.cc +++ b/src/lib/kdm_cli.cc @@ -75,6 +75,8 @@ help (std::function out) out (" -S, --screen screen name (when using -C) or screen name (to filter screens when using -c)"); out (" -C, --projector-certificate file containing projector certificate"); out (" -T, --trusted-device-certificate file containing a trusted device's certificate"); + out (" --decryption-key file containing the private key which can decrypt the given DKDM"); + out (" (DCP-o-matic's configured private key will be used otherwise)"); out (" --cinemas-file use the given file as a list of cinemas instead of the current configuration"); out (" --list-cinemas list known cinemas from the DCP-o-matic settings"); out (" --list-dkdm-cpls list CPLs for which DCP-o-matic has DKDMs"); @@ -448,6 +450,7 @@ try optional cinema_name; shared_ptr cinema; optional projector_certificate; + optional decryption_key; optional screen; vector> screens; optional dkdm; @@ -489,13 +492,14 @@ try { "screen", required_argument, 0, 'S' }, { "projector-certificate", required_argument, 0, 'C' }, { "trusted-device-certificate", required_argument, 0, 'T' }, + { "decryption-key", required_argument, 0, 'G' }, { "list-cinemas", no_argument, 0, 'B' }, { "list-dkdm-cpls", no_argument, 0, 'D' }, { "cinemas-file", required_argument, 0, 'E' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "ho:K:Z:f:t:d:F:pae::zvc:S:C:T:BDE:", long_options, &option_index); + int c = getopt_long (argc, argv, "ho:K:Z:f:t:d:F:pae::zvc:S:C:T:BDE:G:", long_options, &option_index); if (c == -1) { break; @@ -579,6 +583,9 @@ try screens.back()->trusted_devices.push_back(TrustedDevice(dcp::Certificate(dcp::file_to_string(optarg)))); } break; + case 'G': + decryption_key = optarg; + break; case 'B': list_cinemas = true; break; @@ -679,9 +686,11 @@ try throw KDMCLIError ("could not find film or CPL ID corresponding to " + thing); } + string const key = decryption_key ? dcp::file_to_string(*decryption_key) : Config::instance()->decryption_chain()->key().get(); + from_dkdm ( screens, - dcp::DecryptedKDM (*dkdm, Config::instance()->decryption_chain()->key().get()), + dcp::DecryptedKDM(*dkdm, key), verbose, output, container_name_format, -- cgit v1.2.3