dcpomatic2_kdm_cli help

Anything and everything to do with DCP-o-matic.
pasaico
Posts: 17
Joined: Thu Feb 17, 2022 10:04 am

dcpomatic2_kdm_cli help

Post by pasaico »

I'm having trouble generating a KDM for an encrypted DCP using DCP-o-matic. I created a DKDM on certificate dcpomatic for the DCP and I'm trying to use dcpomatic2_kdm_cli to generate a KDM. Here is the command I'm running:

Code: Select all

dcpomatic2_kdm_cli -v create CPL_22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09 --cinema -SATURN --projector-certificate /mnt/z/SATURN/357000-interop.pem --output /mnt/z/KDM_OUTPUT --valid-from "now" --valid-duration "2 weeks"
Making KDMs valid from 2025-02-12T15:56:53+01:00 to 2025-02-26T15:56:53+01:00
dcpomatic2_kdm_cli: could not find film or CPL ID corresponding to CPL_22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09
I have verified that the CPL ID is correct and that the DKDM exists in the DCP-o-matic configuration. I've also tried listing the DKDM CPLs with dcpomatic2_kdm_cli list-dkdm-cpls, :

Code: Select all

dcpomatic2_kdm_cli list-dkdm-cpls
22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09
Any help or suggestions on how to resolve this issue would be greatly appreciated!
carl
Site Admin
Posts: 2697
Joined: Thu Nov 14, 2013 2:53 pm

Re: dcpomatic2_kdm_cli help

Post by carl »

Can you try passing the ID of the CPL without the CPL_ prefix?

So use 22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09 instead of CPL_22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09
pasaico
Posts: 17
Joined: Thu Feb 17, 2022 10:04 am

Re: dcpomatic2_kdm_cli help

Post by pasaico »

carl wrote: Wed Feb 12, 2025 3:27 pm Can you try passing the ID of the CPL without the CPL_ prefix?

So use 22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09 instead of CPL_22f7c2c0-5aed-4d42-bb12-fa5eb0a1af09
ok thankyou

Could not decrypt KDM (error:02000079:rsa routines::oaep decoding error) (256/2048)

i have create a dkdm from certificate copy paste in config.xml
because with dcpomatic2_kdm_cli dump-decryption-certificate export, in my software was error incomplete certificate chain.
carl
Site Admin
Posts: 2697
Joined: Thu Nov 14, 2013 2:53 pm

Re: dcpomatic2_kdm_cli help

Post by carl »

It sounds like the certificate you used to make the DKDM does not match the private key that DCP-o-matic will use to decrypt the KDM, perhaps?

Is there a reason why you can't just recreate the KDM decryption chain? Are you already relying on it staying the same?
IoannisSyrogiannis
Posts: 241
Joined: Mon Nov 13, 2017 8:40 pm

Re: dcpomatic2_kdm_cli help

Post by IoannisSyrogiannis »

If I may intrude, I was wondering, have you worked with this ...interop.pem before?
pasaico
Posts: 17
Joined: Thu Feb 17, 2022 10:04 am

Re: dcpomatic2_kdm_cli help

Post by pasaico »

carl wrote: Wed Feb 12, 2025 4:23 pm It sounds like the certificate you used to make the DKDM does not match the private key that DCP-o-matic will use to decrypt the KDM, perhaps?

Is there a reason why you can't just recreate the KDM decryption chain? Are you already relying on it staying the same?

is there a command to export the dcpomatic2 key to enter in my KDM generation software, to try to do a dcp unlock test?

1 I have created an encrypted DCP with other professional software
2 Exported a DKDM for a professional KDM generation software
3 exported from this software a DKDM for DCPomatic2
4 I will generate a KDM from dcpomatic2 for my server player

I'm making Python scripts to test and understand the encryption and decryption process