OpenSSLでファイルの暗号化・復号化するための備忘録
はじめに
opensslコマンドは以下の3つの分類されています。
Cipher command
を使ってファイルの暗号化・復号をやります。
- Standard commands
- Message Digest commands
- Cipher command
基本的な使い方
enc
サブコマンドを使って暗号化・復号します。
入力ファイルを暗号化・復号し出力ファイルに出したいケースが多いと思いますが、その場合はそれぞれ-in
,-out
にファイルパスを渡してあげます。
暗号化の場合、-e
を復号の場合は-d
をつけます。
// 暗号化
$ openssl enc -e <CipherType> -in <InputFile> -out <OutputFile>
// 復号
$ openssl enc -d <CipherType> -in <InputFile> -out <OutputFile>
また、CipherType(aes-256-cbc
など)を以下のようにサブコマンドの位置に書いても暗号化・復号してくれるみたいです。
$ openssl aes-256-cbc -e -in <InputFile> -out <OutputFile>
$ openssl aes-256-cbc -d -in <InputFile> -out <OutputFile>
パスワードの指定方法
タイプ | |
---|---|
stdin | 標準入力から指定 |
pass | コマンドラインで指定 |
file | ファイルから指定 |
env | 環境変数から指定 |
fd | ファイルディスクリプタから指定 |
- コマンドラインからパスワードを指定する場合
$ openssl aes-256-cbc -e -in in_sample.txt -out out_sample.txt -pass pass:hoge
- ファイルからパスワードを指定する場合
$ openssl aes-256-cbc -e -in in_sample.txt -out out_sample.txt -pass file:./password.txt
参考
Author And Source
この問題について(OpenSSLでファイルの暗号化・復号化するための備忘録), 我々は、より多くの情報をここで見つけました https://qiita.com/Yarimizu14/items/49690c141b62507e00d9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .