-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenssl
23 lines (17 loc) · 916 Bytes
/
openssl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
openssl enc -d -aes-256-cbc -K 70617373776f726470617373776f726470617373776f726470617373776f7264 -iv 31323334353637383930313233343536 -in first -a
for file in *.log
do
while read line; do
echo "$line" | openssl enc -d -aes-256-cbc -K 70617373776f726470617373776f726470617373776f726470617373776f7264 -iv 31323334353
echo
done <$file >"$file.dec"
done
https://stackoverflow.com/questions/53221040/encrypt-file-line-by-line-using-openssl-on-unix
https://gist.github.com/edwardstock/3c992fb71320391d3639696328a61115
https://gist.github.com/barrysteyn/7308212
https://www.openssl.org/docs/man1.0.2/man1/openssl-enc.html
https://openssl-users.openssl.narkive.com/lFbBMFX0/trying-to-encrypt-with-openssl-commandline-and-decrypt-using-aes-or-evp
https://www.openssl.org/docs/man3.1/man3/EVP_EncryptInit.html
the submissions contains below changes
git push --tags origin submissions/17.nbr4tv.ccrc.1
git pull --tags