2

我已经使用我在独立程序中测试过的 openssl 编写了一个解密函数,它运行良好。但是这个功能是一个巨大项目的一部分,所以它必须包含在那个程序中。为了执行我的独立程序,我使用了以下运行良好的命令:

cc -c aaa.c -I/usr/local/ssl/include
gcc -o aaa aaa.o -I/usr/local/ssl/include -L/usr/local/ssl/lib -lcrypto -lm
./aaa

我为我的主程序制作了一个makefile,在里面这个函数将被调用。

这两个程序都可以单独运行,但是当我在程序中插入函数的定义时,它给了我那些位于 openssl 头文件(即 des.h)之一中的变量的错误。我使用了一些 DES_cblock 类型的变量:

typedef unsigned char DES_cblock[8];

还有另一种结构,其定义如下:

typedef struct DES_ks
{
    union
    {
        DES_cblock cblock;
        DES_LONG deslong[2];
    }ks[16];
} DES_key_schedule;

我在我的程序中像这样使用了这个结构

DES_key_schedule keysched1,keysched2,keysched3;

但它没有认识到这些变量。而且由于在执行独立程序时没有这样的错误,这意味着我无法在主程序中正确链接库文件。我如何使这项工作。这些是我得到的错误:

Syntax error at line 1399, column 16,file/export/home/jayesho/src/custom/FRB/tgl_frbsenddata.ec:
    Error at line 1399, column 16 in file /export/home/jayesho/src/custom/FRB/tgl_fr
bsenddata.ec
    DES_cblock hex_key1,hex_key2,hex_key3,hex_ivec,iv;
...............1
PCC-S-02201, Encountered the symbol "hex_key1" when expecting one of the followi
ng:
   ; , = : ( [ * ? | & < > + - / % . ^ *= /= %= += -= <<= >>=
   &&= ||= ^= | & == != <= >= << >> ++ -- ->
The symbol ";" was substituted for "hex_key1" to continue.
Syntax error at line 1402, column 22, file /export/home/jayesho/src/custom/FRB/tgl_frbsenddata.ec:
Error at line 1402, column 22 in file /export/home/jayesho/src/custom/FRB/tgl_fr
bsenddata.ec
    DES_key_schedule keysched1,keysched2,keysched3;
.....................1
PCC-S-02201, Encountered the symbol "keysched1" when expecting one of the follow
ing:
   ; , = : ( [ * ? | & < > + - / % . ^ *= /= %= += -= <<= >>=
   &&= ||= ^= | & == != <= >= << >> ++ -- ->
The symbol ";" was substituted for "keysched1" to continue.
Syntax error at line 1436, column 38, file /export/home/jayesho/src/custom/FRB/tgl_frbsenddata.ec:
Error at line 1436, column 38 in file /export/home/jayesho/src/custom/FRB/tgl_fr
bsenddata.ec
   if (DES_set_key_checked((C_Block *)hex_key1, &keysched1))

现在我只需要在我的程序中正确链接库文件以使整个程序运行。前面提到的头文件是 des.h,它是 openssl 的一部分。我也尝试通过-lcrypto包含加密库 以前这个 des.h 没有被正确包含,但现在我成功地包含了 des.h 而没有错误。也有人提出仅仅包含头文件是不够的,它的实现文件也需要链接,所以我现在想知道如何包含和链接什么?如何找出需要链接的链接的名称。

4

2 回答 2

1

通常,您使用 LDFLAGS-l为链接器定义选项,并-L使用 LDFLAGS 定义标志。编辑 Makefile 并添加适当的选项。

CPPFLAGS += -I/usr/local/ssl/include 
LDFLAGS += -L/usr/local/ssl/lib 
LDLIBS += -lcrypto -lm
于 2012-05-24T09:29:21.103 回答
0

这些是编译器错误,您还没有进入链接阶段。

我猜想,在编译 tgl_frbsenddata.ec 时,编译器不知道 DES_cblock 或 DES_key_schedule 是什么。在编译器遇到错误的那一刻,我怀疑 des.h 尚未包含任何您可能相信的内容。

您的编译器可能包含一个仅进行预处理的选项(在 gcc 和 clang 中,它是-E)。我建议您在源文件上使用该选项运行它,以查看 typedef 是否出现。

于 2012-05-24T08:27:44.893 回答