omadrm/foundationcerts/data/dummycert.cnf
changeset 35 d52881f84eaa
equal deleted inserted replaced
34:7f8fbd0317cc 35:d52881f84eaa
       
     1 # Copyright (c) 2010 Symbian Foundation Ltd.
       
     2 # All rights reserved.
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of the License "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 #
       
     8 # Initial Contributors:
       
     9 # Symbian Foundation - Initial contribution
       
    10 # 
       
    11 # Description:
       
    12 # Config file for generating the dummy certificate
       
    13 
       
    14 
       
    15 # Steps to generate using OpenSSL
       
    16 #
       
    17 # 1. Generate key
       
    18 #
       
    19 # openssl genrsa -out devicekey1024.pem 1024
       
    20 # openssl rsa -inform pem -in devicekey1024.pem -outform der -out devicekey1024.der
       
    21 #
       
    22 # 2. Generate self-signed X509 certificate
       
    23 #
       
    24 # openssl req -new -x509 -keyform der -key devicekey1024.der -outform der -out dummycert.der -config dummycert.cnf
       
    25 #
       
    26 #
       
    27  
       
    28 
       
    29 distinguished_name = Symbian Foundation
       
    30 prompt = no
       
    31 
       
    32 [Symbian Foundation]
       
    33  C                      = GB
       
    34  ST                     = Test State or Province
       
    35  L                      = Test Locality
       
    36  O                      = Organization Name
       
    37  OU                     = Organizational Unit Name
       
    38  CN                     = Common Name
       
    39  emailAddress           = noreply@symbian.org
       
    40