Re: [Interest] OSX codesign question

2020-04-08 Thread Alexander Carôt
Hej Nuno and Andy,   thanks a lot - yes, it is confusing but you helped to achieve progress, however, some probably last issue to be solved:   What works is this:   soulalex@alexandarotsMBP SJC % codesign --deep --force --verify --verbose --timestamp --options runtime --sign "52EF48168234769

Re: [Interest] OSX codesign question

2020-04-08 Thread Andy
The certificate needs to be added to your Keychain, then you use the name for it in the codesign command. I think if you double-click the cert in the Finder it will add it to "My Certificates" properly. As Nuno pointed out, the name should look like this: "Developer ID Application: ACME_INC (TEAM

Re: [Interest] OSX codesign question

2020-04-08 Thread Nuno Santos
Alex, As far as I know, you don’t specify the certificate file. That certificate must be double clicked and installed on your Mac. You also need to have the private key for it on the same machine. Lets assume you have generated that certificate on that very same machine and therefore you have

Re: [Interest] OSX codesign question

2020-04-08 Thread Alexander Carôt
Hi Andy and Nuno, thanks for your answers - looks like being on a good track now. I think the very last problem for me to fix is choosing the correct file - so far I have used the certificate I downloaded from the developer account like this: codesign --deep ./myApp -s development.cer