US Dollar (USD)
Euro (EUR)
British Pound (GBP)
Emirati Dirham (AED)
Australian Dollar (AUD)
Brazilian Real (BRL)
Canadian Dollar (CAD)
Swiss Franc (CHF)
Danish Krone (DKK)
Indonesian Rupiah (IDR)
Indian Rupee (INR)
Japanese Yen (JPY)
Mexican Peso (MXN)
New Zealand Dollar (NZD)
Philippine Peso (PHP)
Polish Złoty (PLN)
Saudi Riyal (SAR)
Swedish Krona (SEK)
Singapore Dollar (SGD)
Turkish Lira (TRY)
1. Create RSA Private Key and CSR pair.
-> openssl req -new -nodes -keyout
myserver.key
-out
server.csr
Note:
Replace 'myserver.key' and 'server.csr' with names that are more descriptive to you.
2. Follow Prompts.
All in One Method
-> openssl req -new -nodes -keyout
myserver.key
-out
server.csr
-subj "/C=GB/ST=Yorks/L=York/O=MyCompany Ltd./OU=IT/CN=mysubdomain.mydomain.com"
Note:
This is ONLY an example. Please modify it to suite your needs.
C = ISO Country Code (2 letters)
ST = State/Province (Optional)
L = City (optional)
O = Your_Company_name
OU = Department (optional)
CN = Common Name (FQDN)