Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Step1: Create CSR request which may be raised by</p> <pre><code>1) Creating keystore and using that generate CSR file. 2) Perform steps given by certificate authority and download CSR and private key files. </code></pre> <p>Step2: Give your information to certificate authority for verification.</p> <p>Step3: You will be provided a certificate for code signing.</p> <p>Step4: You need to down load intermediate certificate along with root certificate.</p> <p>Step5: Now you will be having your_domain_name.crt, IntCertCA.crt, TrustedRoot.crt</p> <pre><code>Now you need to create a chained certificate by combining all above certificates. 1) Open a text editor (such as wordpad) and paste the entire body of each certificate into one text file in the following order: The Primary Certificate - your_domain_name.crt The Intermediate Certificate - IntCertCA.crt The Root Certificate - TrustedRoot.crt Make sure to include the beginning and end tags on each certificate. The result should look like this: -----BEGIN CERTIFICATE----- (Your Primary SSL certificate: your_domain_name.crt) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (Your Intermediate certificate: IntCertCA.crt) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (Your Root certificate: TrustedRoot.crt) -----END CERTIFICATE----- Save the combined file as your_domain_name.pem. The .pem file is now ready to use. </code></pre> <p>Step6: Import private key into your your_domain_name.pem</p> <pre><code> openssl pkcs12 -export -in your_domain_name.pem -inkey your_private_key.key -out output_file_name.p12 -name your_alias NOTE: PLEASE REMOVE \ FROM FOLLOWING COMMANDS AND EXECUTE ( \ IS BASICALLY COMMAND CONTINUETY ) </code></pre> <p>Step7: Create keystore from output_file_name.p12</p> <pre><code> keytool -importkeystore \ -deststorepass changeit -destkeypass changeit -destkeystore your_domain_keystore.ks \ -srckeystore output_file_name.p12 -srcstoretype PKCS12 -srcstorepass your_store_password \ -alias your_alias </code></pre> <p>Step8: NOTE: PLEASE TAKE BACKUP OF YOUR JAD FILE BEFORE TRIGGERING FOLLOWING COMMANDS.</p> <pre><code> Add your certificates to your your_midlet_name.jad file. java -jar JadTool.jar -addcert -alias your_alias \ -storepass your_store_password \ -keystore your_domain_keystore.ks \ -inputjad your_midlet_name.jad -outputjad your_midlet_name.jad </code></pre> <p>Step9: NOTE: PLEASE TAKE BACKUP OF YOUR JAD FILE BEFORE TRIGGERING FOLLOWING COMMANDS.</p> <pre><code> Sign your midlet, also use your_midlet_name.jad file generated from Step8. java -jar JadTool.jar -addjarsig \ -alias your_store_password \ -storepass your_store_password \ -keypass your_store_password \ -keystore your_domain_keystore.ks \ -inputjad your_midlet_name.jad -outputjad your_midlet_name.jad </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload