Skip to content

Instantly share code, notes, and snippets.

@nachocarballeda
Created December 14, 2019 21:35
Show Gist options
  • Save nachocarballeda/f40f465f36859fbfe9f889ac8a850fc8 to your computer and use it in GitHub Desktop.
Save nachocarballeda/f40f465f36859fbfe9f889ac8a850fc8 to your computer and use it in GitHub Desktop.
$ make
gcc loracrack.c includes/*.c -L/usr/lib/ssl/ -o loracrack -lcrypto -O3 -Wall -lpthread
loracrack.c: In function ‘loracrack_thread’:
loracrack.c:227:17: error: storage size of ‘ctx_aes128’ isn’t known
EVP_CIPHER_CTX ctx_aes128, ctx_aes128_buf;
^~~~~~~~~~
loracrack.c:227:29: error: storage size of ‘ctx_aes128_buf’ isn’t known
EVP_CIPHER_CTX ctx_aes128, ctx_aes128_buf;
^~~~~~~~~~~~~~
loracrack.c:227:29: warning: unused variable ‘ctx_aes128_buf’ [-Wunused-variable]
loracrack.c:227:17: warning: unused variable ‘ctx_aes128’ [-Wunused-variable]
EVP_CIPHER_CTX ctx_aes128, ctx_aes128_buf;
^~~~~~~~~~
Makefile:11: recipe for target 'all' failed
make: *** [all] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment