问题
I tried to make simple test program with AES decryption using OpenSSL ibaries. The compiler/linker shows me an error. Compiler: Dev-Cpp
[Linker error] undefined reference to `AES_set_decrypt_key'
[Linker error] undefined reference to `AES_decrypt'
code:
#include <stdio.h>
#include <openssl/aes.h>
int main(){
AES_KEY k;
unsigned char key[]="2641cf97291c6ea02b930a4e2a824990";
unsigned char in[]="adc8f4ad114433ffaf4597c9738d257c504db763c29d238aa05bd21e1107809f";
unsigned char out[150];
AES_set_decrypt_key(key, 256, &k);
AES_decrypt(in, out, &k);
printf("%s\n", out);
}
Tnx
回答1:
You should link against the openssl libraries - add this to your command line: -lssl -lcrypto
EDIT: you may have to specify explicitly where are the libraries located using the -L option - add a -L<openssl_library_directory>
to the command as well
来源:https://stackoverflow.com/questions/10718418/openssl-aes-h-linker-error-undefined-reference-to