21 lines
539 B
Bash
Executable file
21 lines
539 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
|
|
set -e
|
|
|
|
ENCRYPT_KEY=$1
|
|
|
|
declare -A SECRETS
|
|
SECRETS[secrets/keystore.cipher]=keystore.jks
|
|
SECRETS[secrets/props.cipher]=keystore.properties
|
|
|
|
if [[ -n "$ENCRYPT_KEY" ]]; then
|
|
for src in "${!SECRETS[@]}"; do
|
|
openssl enc -aes-256-cbc -md sha256 -pbkdf2 -d -in "${src}" -out "${SECRETS[${src}]}" -k "${ENCRYPT_KEY}"
|
|
done
|
|
else
|
|
echo "Usage: ./signing-setup.sh <encryption key>"
|
|
fi
|