链接OpenSSL库时出现以下错误:
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info):
relocation 6 has invalid symbol index 13
我一直试图找出解决方案。我想哈希,我需要调用哪些函数,以及一旦被哈希值找到字符串的位置。我对代码中的内容感到困惑。
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/sha.h>
unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md)
{
SHA_CTX c;
static unsigned char m[SHA_DIGEST_LENGTH];
if (md == NULL)
md = m;
if (!SHA1_Init(&c))
return NULL;
SHA1_Update(&c, d, n);
SHA1_Final(md, &c);
OPENSSL_cleanse(&c, sizeof(c));
return (md);
}
答案 0 :(得分:0)
在编译时可能会丢失-c命令,如:
g++ -c ......
或者可能因为缺少main()函数。