fixed that warning en- and decrypt were throwing

main
The_miro 2025-09-25 19:51:25 +02:00
parent 356a4af514
commit 3503f0c28f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
echo $1 | openssl aes-256-cbc -d -a -pass pass:$2 echo $1 | openssl aes-256-cbc -d -a -pbkdf2 -pass pass:$2

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash #!/usr/bin/env bash
echo $1 | openssl aes-256-cbc -a -salt -pass pass:$2 echo $1 | openssl aes-256-cbc -a -salt -pbkdf2 -pass pass:$2