【发布时间】:2014-12-18 02:31:22
【问题描述】:
当我尝试编译以下代码时出现此错误。我安装了 openssl 库。我不懂编程。错误是: “ccS3fmrV.o:wa_pbkdf2.c:(.text+0x1e3): 未定义对‘PKCS5_PBKDF2_HMAC_SHA1’的引用 collect2.exe:错误:ld 返回 1 个退出状态
有人可以帮忙吗?谢谢。
#include <stdio.h>
#include <string.h>
#include <openssl/x509.h>
#include <openssl/evp.h>
#include <openssl/hmac.h>
int main(int argc, char *argv[])
{
unsigned char pass[1024]; // passphrase read from stdin
unsigned char salt[1024]; // salt
int salt_len; // salt length
int ic; // iteration
unsigned char result[1024]; // result
FILE *fp_salt;
if ( argc != 3 ) {
fprintf(stderr, "usage: %s salt_file iteration < passwd_file > binary_key_file \n", argv[0]);
exit(1);
}
ic = atoi(argv[2]);
fp_salt = fopen(argv[1], "r");
if(!fp_salt) {
fprintf(stderr, "error opening salt file: %s\n", argv[1]);
exit(2);
}
salt_len=0;
int ch;
while((ch = fgetc(fp_salt)) != EOF) {
salt[salt_len++] = (unsigned char)ch;
}
fclose(fp_salt);
fgets(pass, 1024, stdin);
if ( pass[strlen(pass)-1] == '\n' )
pass[strlen(pass)-1] = '\0';
PKCS5_PBKDF2_HMAC_SHA1(pass, strlen(pass), salt, salt_len, ic, 16, result);
fwrite(result, 1, 16, stdout);
return(0);
}
【问题讨论】:
-
你用什么命令行来编译这个程序?您可能需要一个
-l标志来链接相应的库。 -
感谢您的回复。我用过:gcc -o wa_pbkdf2 wa_pbkdf2.c -lssl