秘密鍵はなくさないようにね。
1 2 3 4 5 6 7 8 9 10 11 |
# 秘密鍵作成 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 |