株式会社ヴァンデミックシステム

Blog

<スポンサーリンク>

秘密鍵はなくさないようにね。

# 秘密鍵作成
openssl genrsa -out private.key

# 秘密鍵のペアとなる公開鍵を作成
openssl rsa -in private.key -pubout -out public.key

# 公開鍵でファイル暗号化
openssl rsautl -pubin -inkey public.key -in test.txt -encrypt -out test.rsa.txt

# 秘密鍵でファイル複合
openssl rsautl -inkey private.key -in test.rsa.txt -decrypt -out test.decrypt.txt

<スポンサーリンク>

コメントを残す

Allowed tags:  you may use these HTML tags and attributes: <a href="">, <strong>, <em>, <h1>, <h2>, <h3>
Please note:  all comments go through moderation.

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)