Skip to content

Instantly share code, notes, and snippets.

@giavac
Created July 4, 2023 15:42
Show Gist options
  • Save giavac/58390ec9b4ea3b1b464f0cefa965c191 to your computer and use it in GitHub Desktop.
Save giavac/58390ec9b4ea3b1b464f0cefa965c191 to your computer and use it in GitHub Desktop.
Bash script to launch a decrypt program
#!/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