X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=tools%2Fdcpkdm.cc;h=d8a10fa35eae8058684b41cffee29787c629d7c4;hb=d24b16a9b1ad2fdaef264d9c9e7ab23a95a98ad1;hp=faad95d65df0000f86da1387d6505cc1bd4ef005;hpb=9763bc2ef330fd8cca7aa7cbc851969c264914bd;p=libdcp.git diff --git a/tools/dcpkdm.cc b/tools/dcpkdm.cc index faad95d6..d8a10fa3 100644 --- a/tools/dcpkdm.cc +++ b/tools/dcpkdm.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2017-2019 Carl Hetherington + Copyright (C) 2017-2021 Carl Hetherington This file is part of libdcp. @@ -31,19 +31,21 @@ files in the program, then also delete it here. */ -#include "encrypted_kdm.h" + +#include "certificate_chain.h" #include "decrypted_kdm.h" -#include "util.h" +#include "encrypted_kdm.h" #include "exceptions.h" -#include "certificate_chain.h" -#include +#include "util.h" #include -using std::string; -using std::cout; + using std::cerr; +using std::cout; +using std::string; using boost::optional; + static void help (string n) { @@ -52,17 +54,13 @@ help (string n) << " -p, --private-key private key file\n"; } -static string -tm_to_string (struct tm t) -{ - char buffer[64]; - snprintf (buffer, 64, "%02d/%02d/%02d %02d:%02d:%02d", t.tm_mday, t.tm_mon, (t.tm_year + 1900), t.tm_hour, t.tm_min, t.tm_sec); - return buffer; -} int main (int argc, char* argv[]) +try { + dcp::init (); + optional private_key_file; int option_index = 0; @@ -99,7 +97,7 @@ main (int argc, char* argv[]) dcp::EncryptedKDM enc_kdm (dcp::file_to_string (kdm_file)); if (enc_kdm.annotation_text()) { - cout << "Annotation: " << enc_kdm.annotation_text().get() << "\n"; + cout << "Annotation: " << enc_kdm.annotation_text().get() << "\n"; } cout << "Content title: " << enc_kdm.content_title_text() << "\n"; cout << "CPL id: " << enc_kdm.cpl_id() << "\n"; @@ -109,14 +107,14 @@ main (int argc, char* argv[]) cout << "Signer chain:\n"; dcp::CertificateChain signer = enc_kdm.signer_certificate_chain (); - BOOST_FOREACH (dcp::Certificate const & i, signer.root_to_leaf()) { + for (auto const& i: signer.root_to_leaf()) { cout << "\tCertificate:\n"; cout << "\t\tSubject: " << i.subject() << "\n"; cout << "\t\tSubject common name: " << i.subject_common_name() << "\n"; cout << "\t\tSubject organization name: " << i.subject_organization_name() << "\n"; cout << "\t\tSubject organizational unit name: " << i.subject_organizational_unit_name() << "\n"; - cout << "\t\tNot before: " << tm_to_string(i.not_before()) << "\n"; - cout << "\t\tNot after: " << tm_to_string(i.not_after()) << "\n"; + cout << "\t\tNot before: " << i.not_before().as_string() << "\n"; + cout << "\t\tNot after: " << i.not_after().as_string() << "\n"; if (i.has_utf8_strings()) { cout << "\t\tUSES INCORRECT (UTF8) STRING ENCODING\n"; } @@ -125,11 +123,11 @@ main (int argc, char* argv[]) if (private_key_file) { try { dcp::DecryptedKDM dec_kdm (enc_kdm, dcp::file_to_string (private_key_file.get())); - cout << "\nKeys"; - BOOST_FOREACH (dcp::DecryptedKDMKey i, dec_kdm.keys ()) { + cout << "\nKeys:"; + for (auto i: dec_kdm.keys()) { cout << "\n"; cout << "\tID: " << i.id() << "\n"; - cout << "\tStandard: " << (i.standard() == dcp::SMPTE ? "SMPTE" : "Interop") << "\n"; + cout << "\tStandard: " << (i.standard() == dcp::Standard::SMPTE ? "SMPTE" : "Interop") << "\n"; cout << "\tCPL ID: " << i.cpl_id() << "\n"; if (i.type()) { cout << "\tType: " << i.type().get() << "\n"; @@ -144,3 +142,8 @@ main (int argc, char* argv[]) return 0; } +catch (std::exception& e) +{ + cerr << "Error: " << e.what() << "\n"; + exit (EXIT_FAILURE); +}