I need to sign my adobe air application which is a native installer. Right now I just have windows version. But soon I'll be porting it to other OSes including mobile OS. My query is whether I need to get separate code signing certificate for each one or one is enough? Also does 32 bit and 64 bit matter? In verisign they've categorized certificates for windows (.exe) and adobe air (.air and .airi) separately. So which one should I obtain?
|
CAs selling code signing certificates always pretend that you need different certificates to sign different kinds of applications. This is basically a scam. Most of the time the certificates are exactly the same, only the file format might differ. Even if the file format isn't supported by your code signing tool, there are ways to convert between different formats. So basically it doesn't matter which certificate you buy. If you package your AIR app with a captive runtime, you can simply use a self-signed certificate with the Under Windows, you should use Microsoft's Under Mac OS X ("Gatekeeper"), things are a little different. You can only use certificates issued by Apple. You have to enroll in the "Mac Developer Program" ($99 per year) to receive a code signing certificate for OS X. If you use a captive runtime, sign the application bundle created with Under Linux, you don't sign packages with certificates issued by a CA. You simply sign them with a GPG key that you can create yourself for free. You have to publish your public GPG key so your customers can make sure that your packages are valid, though. For Android apps, you can simply use a self-signed certificate, AFAIK. 32-bit and 64-bit apps can be signed in exactly the same way. You don't need separate certificates. But |
||||
|
|