-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenSSL #103
Comments
概要The OpenSSL Project によるソフトウェア。 鍵や証明書、CSRなどはすべて ASN.1 というデータ構造で表される。
ASN.1 のエンコード形式には DER と PEM の 2 種類が多く使われる。
OpenSSL ではデフォルトエンコーディングとして PEM を使用する。 |
openssl genrsahttps://www.openssl.org/docs/man1.0.2/apps/genrsa.html 単純な鍵の生成
鍵長を指定した生成
|
openssl rsahttps://www.openssl.org/docs/man1.0.2/apps/rsa.html 秘密鍵から公開鍵を生成
秘密鍵の内容を出力
公開鍵の内容を出力
鍵のエンコードを PEM から DER に変換
|
openssl reqhttps://www.openssl.org/docs/man1.0.2/apps/req.html CSR を作成するPEM 形式の CSR を作成する。
CSR の内容を出力
|
openssl x509https://www.openssl.org/docs/man1.0.2/apps/x509.html CSR を基に証明書を作成する有効期限90日間で署名している。
証明書の内容を出力する
|
https://www.openssl.org/
The text was updated successfully, but these errors were encountered: