Skip to content

Commit 9e7f223

Browse files
committed
Updated local openssl so that encryption is symmetric (hopefully)
1 parent 3be7beb commit 9e7f223

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/key.p12.enc

0 Bytes
Binary file not shown.

scripts/decrypt-secrets.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ls -al .circleci/
77
echo $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
88

99
# Encrypt
10-
#openssl aes-256-cbc -md md5 -e -in key.p12 -out .circleci/key.p12.enc -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
10+
#openssl aes-256-cbc -e -in key.p12 -out .circleci/key.p12.enc -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
1111

1212
# Decrypt
13-
openssl aes-256-cbc -md md5 -d -in .circleci/key.p12.enc -out key.p12 -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
13+
openssl aes-256-cbc -d -in .circleci/key.p12.enc -out key.p12 -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1

0 commit comments

Comments
 (0)