Categories: How To | Build process | Symbian C++ | Java
This page was last modified 06:59, 25 September 2007.
Create a certificate using OpenSSL
From Forum Nokia Wiki
How to: create a self-signed certificate using OpenSSL
If you want to create a self-signed certificate with validity periods other than 1 year, or with additional information about yourself, you can use a tool such as Open SSL to create it, rather than the standard MakeKeys utility that comes with the SDK.
The following commands, which are based on the suggestions given here, show how to create a self-signed key/certificate pair with a lifetime of 10 years:
openssl genrsa 1024 >selfsigned.key
openssl req -new -x509 -nodes -sha1 -days 3650 -key
selfsigned.key >selfsigned.cer
After entering the second command, you are prompted for various bits of information about yourself that is embedded into the certificate. This process only needs to be performed once, and the generated certificate can then be kept for future use with CreateSIS or SignSIS.
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Disabling Popup Authentications | mark.ramos222 | Mobile Java Networking & Messaging & Security | 4 | 2007-03-30 02:50 |
| Could I install my own certificate in Nokia 6131? | i12vamor | Near Field Communication | 2 | 2008-03-04 07:32 |
| Signing Problem : Certificate chaining | contactabbas | Mobile Java General | 3 | 2007-01-04 16:05 |
| MakeSIS won't sign with my ACS Publisher ID | colinward1970 | Symbian Signing, Certification and Security | 18 | 2007-09-15 11:24 |
| problem related to certificate key | deepakk | General Symbian C++ | 0 | 2008-04-04 10:48 |
