Created
July 4, 2023 15:42
-
-
Save giavac/58390ec9b4ea3b1b464f0cefa965c191 to your computer and use it in GitHub Desktop.
Bash script to launch a decrypt program
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
gcc decrypt.c -o decrypt -lssl -lz -lcrypto | |
encrypted="..." | |
tag="..." | |
iv="..." | |
key="..." | |
./decrypt "${encrypted}" "${tag}" "${iv}" "${key}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment