Skip to content
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

archive の修正 #16

Merged
merged 2 commits into from
May 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions bin/archive
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@
#
# OpenSSL の AES-256-CBC と「共通鍵」を使ってファイルを暗号化します。
#
# GitHub 上で公開されている(https://github.com/<user name>.keys で取得できる)
# 自身の RSA 公開鍵とペアの秘密鍵である必要があります。
#
# - 使い方の例:
# 以下のコマンドで署名ファイル `myfile.txt.sig` が作成されます。
# $ ./sign ~/.ssh/id_rsa myfile.txt
# 以下のコマンドで圧縮&暗号化済みファイル `myfile.txt.tar.gz.aes` が作成されます。
# $ ./archive myfile.txt
#
# - 注意:利用前にスクリプトに実行権限を与えるのを忘れないでください。
#
Expand Down Expand Up @@ -44,7 +41,7 @@ if [[ $# -lt 1 ]]; then
echo
echo "[オプション]"
echo "- <output file> : 圧縮&暗号化済みファイルの出力先のパス"
echo " 指定がない場合は <input_file>.gz.aes として出力されます。"
echo " 指定がない場合は <input_file>.tar.gz.aes として出力されます。"
echo
exit 1
fi
Expand All @@ -67,7 +64,7 @@ echo -n "- アーカイブ用ディレクトリを作成しています ... "
TEMPDIR="./${INPUTFILE}-archive/"

if ! mkdir -p "$TEMPDIR"; then
echo "NG:ディレクトリをできませんでした。"
echo "NG:ディレクトリを作成できませんでした。"
echo "- 書き込み権限などを確認してください。"
exit 1
fi
Expand All @@ -79,7 +76,10 @@ echo -n "- 共通鍵を作成しています ... "

PASSWORD=$(md5s $RANDOM)

if ! (echo "$PASSWORD" >"${TEMPDIR}${OUTPUTFILE}.passwd"); then
if ! (
umask 077
echo "$PASSWORD" >"${TEMPDIR}${OUTPUTFILE}.passwd"
); then
echo "NG:ファイルを作成できませんでした。"
echo "書き込み権限などを確認してください。"
exit 1
Expand Down Expand Up @@ -109,7 +109,7 @@ echo
# ----------------
echo -n "- 共通鍵を読み込んでいます ... "

if PASSWORD=$(cat "${TEMPDIR}${OUTPUTFILE}.passwd"); then
if ! PASSWORD=$(cat "${TEMPDIR}${OUTPUTFILE}.passwd"); then
echo "NG:共通鍵を読み込めませんでした。"
exit 1
fi
Expand Down