2

我试图在我的程序中只使用 aes。我已经复制了文件

  1. 配置文件
  2. aes.h
  3. 拥有.h

到文件夹polarssl。但是当我运行程序时

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "polarssl/aes.h"
#include "polarssl/havege.h"
int main()
{
    char buff[2][64] = {"ABCDEFGHIJKLMN", ""};
    havege_state hs;
    int retval;
    unsigned char IV[16];
    unsigned char IV2[16];
    unsigned char key[32];

    aes_context enc_ctx;
    aes_context dec_ctx;

    havege_init(&hs);
    havege_random(&hs, IV, 16);
    havege_random(&hs, key, 32);
    strncpy(IV, IV2, 16);           //copy IV

    aes_setkey_enc(&enc_ctx, key, 256);
    aes_setkey_dec(&dec_ctx, key, 256);


    //encrypt
    aes_crypt_cbc(&enc_ctx, AES_ENCRYPT, 64, IV, buff[0], buff[1]);
    printf("Before encrypt:%s\n", buff[0]);

    //decrypt
    aes_crypt_cbc(&dec_ctx, AES_DECRYPT, 64, IV2, buff[1],buff[0]);
    printf("After decrypt:%s\n", buff[0]);
    return 0;
}

我收到错误

In function `main':
ex.c:(.text+0x68): undefined reference to `havege_init'
ex.c:(.text+0x86): undefined reference to `havege_random'
ex.c:(.text+0xa4): undefined reference to `havege_random'
ex.c:(.text+0xe0): undefined reference to `aes_setkey_enc'
ex.c:(.text+0xfe): undefined reference to `aes_setkey_dec'
ex.c:(.text+0x133): undefined reference to `aes_crypt_cbc'
ex.c:(.text+0x17e): undefined reference to `aes_crypt_cbc'
collect2: error: ld returned 1 exit status
4

2 回答 2

1

在头文件旁边,您还需要 .c 文件!(aes.c, havege.c) 并在您的代码中编译它们。

在实施方面: * 你确定要使用 HAVEGE 吗?对其有效性有很多疑问(取决于您运行的系统),标准化的CTR-DRBG似乎是一个更好的选择。

于 2013-12-22T12:20:28.320 回答
0

我认为您的错误与链接到 Aes 和 Havege 文件有关。您的编译器无法识别它们!它们和你的主目录在同一个文件夹中吗?如果它们在同一个文件夹中,则从顶部的头文件名中删除“polarssl/”。

或者,在编译时一定要包含 aes.c 和 aes.h。我发现由于这个原因我得到了同样的错误。我只在编译中包含 aes.h。例子

$terminal: gcc main.c aes.h aes.c -o encrypt

就是想?如果您只想使用 aes,为什么要尝试使用 hasge.h?

于 2014-01-13T15:28:12.050 回答