Changes between Initial Version and Version 1 of tech/OpenSSL


Ignore:
Timestamp:
1970/01/01 09:19:28 (54 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • tech/OpenSSL

    v1 v1  
     1= OpenSSLメモ = 
     2== 自己証明書の作成 == 
     3秘密鍵と自己証明書の作成。サーバ証明書、クライアント証明書ともこのコマンド発で作成できる。単に通信路の暗号化するだけなら、これで十分。 
     4{{{ 
     5$ openssl.exe req -new -x509 -keyout server-key.pem -out server-cert.pem 
     6Loading 'screen' into random state - done 
     7Generating a 1024 bit RSA private key 
     8...........................................++++++ 
     9............++++++ 
     10writing new private key to 'server-key.pem' 
     11Enter PEM pass phrase: [パスワード入力] 
     12Verifying - Enter PEM pass phrase: [パスワード入力(確認用)] 
     13----- 
     14You are about to be asked to enter information that will be incorporated 
     15into your certificate request. 
     16What you are about to enter is what is called a Distinguished Name or a DN. 
     17There are quite a few fields but you can leave some blank 
     18For some fields there will be a default value, 
     19If you enter '.', the field will be left blank. 
     20----- 
     21Country Name (2 letter code) [AU]:JP                       [日本の国コードJPを入力] 
     22State or Province Name (full name) [Some-State]:Kanagawa   [証明書保有者の県名を入力] 
     23Locality Name (eg, city) []:Kamakura                       [市名を入力] 
     24Organization Name (eg, company) [Internet Widgits Pty Ltd]:[所属組織名(会社名、団体名)等を入力] 
     25Organizational Unit Name (eg, section) []:                 [所属組織における部署を入力] 
     26Common Name (eg, YOUR name) []:Taro Okamoto                [保有者の名前を入力] 
     27Email Address []:taro@gmail.com                            [メールアドレスを入力] 
     28}}} 
     29== WindowsでOpenSSL ==