我正在使用 CodeBlocks IDE 来测试以下已知的OpenSLL示例。
#include <openssl/conf.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#include <string.h>
int main(int arc, char *argv[])
{
/* Set up the key and iv. Do I need to say to not hard code these in a
* real application? :-)
*/
/* A 256 bit key */
unsigned char *key = "01234567890123456789012345678901";
/* A 128 bit IV */
unsigned char *iv = "01234567890123456";
/* Message to be encrypted */
unsigned char *plaintext =
"The quick brown fox jumps over the lazy dog";
/* Buffer for ciphertext. Ensure the buffer is long enough for the
* ciphertext which may be longer than the plaintext, dependant on the
* algorithm and mode
*/
unsigned char ciphertext[128];
/* Buffer for the decrypted text */
unsigned char decryptedtext[128];
int decryptedtext_len, ciphertext_len;
/* Initialise the library */
ERR_load_crypto_strings();
OpenSSL_add_all_algorithms();
OPENSSL_config(NULL);
/* Encrypt the plaintext */
ciphertext_len = encrypt(plaintext, strlen(plaintext), key, iv,ciphertext);
/* Do something useful with the ciphertext here */
printf("Ciphertext is:\n");
BIO_dump_fp(stdout, ciphertext, ciphertext_len);
/* Decrypt the ciphertext */
decryptedtext_len = decrypt(ciphertext, ciphertext_len, key, iv,decryptedtext);
/* Add a NULL terminator. We are expecting printable text */
decryptedtext[decryptedtext_len] = '\0';
/* Show the decrypted text */
printf("Decrypted text is:\n");
printf("%s\n", decryptedtext);
/* Clean up */
EVP_cleanup();
ERR_free_strings();
return 0;
}
我已经编译并安装了最新的Openssl库并链接到我的项目。
/usr/local/ssl/lib/libcrypto.a
/usr/local/ssl/lib/libssl.a
/lib/x86_64-linux-gnu/libdl-2.19.so
但是,当我编译项目时,我总是收到以下错误:
||=== Build: Release in CryptoProject (compiler: GNU GCC Compiler) ===|
obj/Release/main.o||In function `main':|
main.c:(.text.startup+0x46)||undefined reference to `encrypt'|
main.c:(.text.startup+0x81)||undefined reference to `decrypt'|
||=== Build failed: 2 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
我在项目中遗漏了一些库吗?请帮忙!
答案 0 :(得分:0)
在我的情况下,通过添加LDFLAGS&#39; -lcrypt&#39;来解决错误。注意,没有&#39; o&#39;,NOT&#39; -lcrypto&#39;。
答案 1 :(得分:0)
当我遇到此错误时,尝试从提供的GPL来源构建D-Link WBR-1310路由器固件,问题是Makefile在/ usr下寻找crypt.h和libcrypt.so *,而不是包含的工具链。在压缩包中。我必须修改Makefile才能将$(wildcard /usr/lib/libcrypt.*)
更改为$(shell find ../.. -name libcrypt.*)
。
修改后,它找到了库并相应地设置了LIBS
。
答案 2 :(得分:0)
encrypt
和decrypt
不是OpenSSL函数。您的编译器应该已经警告您有关其隐式声明的信息。如果没有,请升级到gcc的最后一个稳定版本。将其设置为将所有警告视为错误。
与libcrypt
链接不是正确的解决方案。该库确实包含名为encrypt
和decrypt
的函数,但这些不是您想要的函数(它们与openssl无关)。
我不知道您在哪里找到了这个确切的示例,但是OpenSSL Wiki上的示例通常包含their own implementations of encrypt
and decrypt
。可以在here中找到与您的示例更相似的示例,其中还包含encrypt
和decrypt
的实现。