9

我在 c++ linux 中使用 crypto++。这是我的简单代码:

#include <iostream>
#include <fstream>
#include <string.h>

#include "crypto++/cryptlib.h"
#include "crypto++/modes.h"
#include "crypto++/filters.h"
#include "crypto++/aes.h"
#include "crypto++/osrng.h"
#include "crypto++/strciphr.h"

using namespace std;
using namespace CryptoPP;

ifstream::pos_type size;
char * memblock;
int length;
char * _iv[AES::BLOCKSIZE];
char * keys[AES::MAX_KEYLENGTH];


void encriptCTR(byte * outbyte, const byte * inbyte, const byte * key, const byte * iv);

void encriptCTR(byte * outbyte, const byte * inbyte, const byte * key, const byte * iv)
{
    size_t inbyte_len = strlen((const char *)inbyte);
    CTR_Mode<AES>::Encryption ctr_encription(key, strlen((const char*)key), iv);
    ctr_encription.ProcessData(outbyte, inbyte, inbyte_len);
}

int main()
{
    ifstream file;
    file.open("testaja", ios::binary);
    if (file.is_open())
    {
        file.seekg (0, ios::end);
        length = file.tellg();
        memblock = new char [length];
        file.seekg (0, ios::beg);
        file.read (memblock, length);


        if (!file)
        {
            int a;
            a = (int)file.gcount();
            file.clear();
        }
        else
        {
            file.close();

            for (int i = 0; i < length; ++i)
            {
                cout << hex << (int)memblock[i] << " ";
            }

        }
    }
}

当我运行它时,发生了一些错误:

 undefined reference to `CryptoPP::AlignedAllocate(unsigned int)'
 undefined reference to `CryptoPP::UnalignedAllocate(unsigned int)'
 undefined reference to `CryptoPP::AlignedDeallocate(unsigned int)'
 undefined reference to `CryptoPP::UnalignedDeallocate(unsigned int)'

然后,我使用命令

gcc -o test test.cpp -L/usr/lib/crypto++ -lcrypto++

但是这个错误仍然存​​在:

undefined reference to `CryptoPP::AlignedAllocate(unsigned int)'
undefined reference to `CryptoPP::UnalignedAllocate(unsigned int)'
undefined reference to `CryptoPP::AlignedDeallocate(unsigned int)'
undefined reference to `CryptoPP::UnalignedDeallocate(unsigned int)'

我该如何解决这个错误?我的代码有问题吗?

我正在为这个包使用突触包管理器安装crypto++:

libcrypto++-utils
libcrypto++8
libcrypto++8-dbg
libcrypto++-dev
libcrypto++-doc

libcrypto++.a 和 libcrypto++.so 可以在 /usr/lib/ 中找到

提前致谢。

4

3 回答 3

7

这个命令看起来不对:

gcc -o test test.cpp -L/usr/lib/crypto++ -lcrypto++

如果(如您所说)库在其中,/usr/lib那么您不应该说-L/usr/lib/crypto++

我认为该libcrypto++8软件包将其库安装在-L/usr/lib/crypto++目录中,并且可能它们不兼容并且不提供您的程序需要的未定义符号。

您应该简单地编译:

gcc -o test test.cpp -lcrypto++

(没有必要说-L/usr/lib,因为它是图书馆的默认位置)

于 2012-07-22T02:17:00.547 回答
6

它解决了!我改变我的命令:

g++ -o test test.cpp -L/usr/lib/crypto++ -lcrypto++

到这个命令:

g++ -o test test.cpp -L/usr/lib/ -lcryptopp -lpthread

我添加 -lpthread 因为在我使用此命令后:

g++ -o test test.cpp -L/usr/lib/ -lcryptopp

我收到这些错误:

./libcryptopp.so: undefined reference to `pthread_getspecific'
./libcryptopp.so: undefined reference to `pthread_key_delete'
./libcryptopp.so: undefined reference to `pthread_key_create'
./libcryptopp.so: undefined reference to `pthread_setspecific'

我误解了 -L/usr/lib/crypto++ arg,我认为编译器会在 /usr/lib/ 目录中搜索 crypto++,结果编译器会在 -L/usr/lib/crypto++ 目录中搜索 crypto++,而软件包安装在 -L/usr/lib/ 目录中。

感谢@jonathan wakely。

于 2012-07-22T02:27:49.100 回答
0

我也遇到了这个问题。您的编译器需要将库文件绑定到您的程序,因为它找不到您的 decleration 的任何实现!

我仍然没有解决我的问题。但你有别的办法!!!您可以.cpp用库文件代替原始文件。

您可以Cryptopp从以下链接下载原始文件:

https://www.cryptopp.com/cryptopp563.zip

于 2016-04-17T10:20:19.387 回答