From: Carl Hetherington Date: Wed, 18 Jan 2023 13:30:37 +0000 (+0100) Subject: Dolby is apparently recreating all their certificates (as they will soon expire)... X-Git-Tag: v2.16.41~10 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=d0188ed3e1ea5536e729e93b87d54114368120ac Dolby is apparently recreating all their certificates (as they will soon expire) and they renamed the files. --- diff --git a/src/wx/dolby_doremi_certificate_panel.cc b/src/wx/dolby_doremi_certificate_panel.cc index 7cab6b24b..66dce8612 100644 --- a/src/wx/dolby_doremi_certificate_panel.cc +++ b/src/wx/dolby_doremi_certificate_panel.cc @@ -53,6 +53,15 @@ DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (DownloadCertificateDia static void try_dcp2000 (list& urls, list& files, string prefix, string serial) { + urls.push_back(String::compose("%1%2xxx/Dolby-DCP2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); + files.push_back(String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)); + + urls.push_back(String::compose("%1%2xxx/Dolby-DCP2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); + files.push_back(String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)); + + urls.push_back(String::compose("%1%2xxx/Dolby-DCP2000-%3.certs.zip", prefix, serial.substr(0, 3), serial)); + files.push_back(String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)); + urls.push_back (String::compose("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose("dcp2000-%1.cert.sha256.pem", serial));