We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a3014 commit 4cf44bcCopy full SHA for 4cf44bc
.circleci/key.p12.enc
0 Bytes
scripts/decrypt-secrets.sh
@@ -4,6 +4,10 @@
4
# https://github.com/circleci/encrypted-files
5
6
ls -al .circleci/
7
+
8
echo $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
9
-openssl aes-256-cbc -d -in .circleci/key.p12.enc -out key.p12 -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
10
+# Encrypt
11
+# openssl aes-256-cbc -e -in key.p12 -out .circleci/key.p12.enc -k "$ANDROID_NETWORK_TOOLS_DECRYPTKEY1"
12
+# Decrypt
13
+openssl aes-256-cbc -d -in .circleci/key.p12.enc -out key.p12 -k "$ANDROID_NETWORK_TOOLS_DECRYPTKEY1"
0 commit comments