cryptopp使用Qt mingw编译,以及海思平台交叉编译

简介: cryptopp使用Qt mingw编译,以及海思平台交叉编译

编译工程生成,使用qmake生成qt工程文件(海思平台时,要用海思平台的qmake),将

TEMPLATE = app修改为:TEMPLATE = lib


添加如下:

win32:LIBS += -lws2_32  #windows下用的QMAKE_CXXFLAGS += -msse4 -maes -mpclmul -msha


在windows下,用mingw


windows下编译好之后,头文件放入到mingw的include里,如下路径:

D:\Qt\Qt5.12.6\5.12.6\mingw73_32\include


libcryptopp.a要放在如下目录里:

D:\Qt\Qt5.12.6\Tools\mingw730_32\lib


海思的库文件和头文件编译好之后,可以放入到编译器的安装目录下(我用的是静态库):

/opt/hisi-linux/x86-arm/arm-hisiv500-linux/target/usr

这个目录下的include和lib下面


windows下编译没有遇到问题,直接可以编译通过,下面都是海思编译器交叉编译的问题:


1.编译错误1

arm-hisiv500-linux-g++ -c -pipe -msse4 -maes -mpclmul -msha -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../cryptopp800 -I. -I../../cryptopp800 -I/opt/qt5.12-arm/include -I/opt/qt5.12-arm/include/QtGui -I/opt/qt5.12-arm/include/QtCore -I. -I/opt/qt5.12-arm/mkspecs/linux-hisiv500-g++ -o 3way.o ../3way.cpp
arm-hisiv500-linux-g++: error: unrecognized command line option ‘-msse4’
arm-hisiv500-linux-g++: error: unrecognized command line option ‘-maes’
arm-hisiv500-linux-g++: error: unrecognized command line option ‘-mpclmul’
arm-hisiv500-linux-g++: error: unrecognized command line option ‘-msha’
Makefile:1303: recipe for target '3way.o' failed
make: *** [3way.o] Error 1


原因:

海思编译器可能不支持-msse4 -maes -mpclmul -msha编译选项;

去掉这几项即可编译


2.编译错误2

/opt/hisi-linux/x86-arm/arm-hisiv500-linux/lib/gcc/arm-hisiv500-linux-uclibcgnueabi/4.9.4/include/arm_neon.h:31:2: error: #error You must enable NEON instructions (e.g. -mfloat-abi=softfp -mfpu=neon) to use arm_neon.h
 #error You must enable NEON instructions (e.g. -mfloat-abi=softfp -mfpu=neon) to use arm_neon.h
  ^
../aria_simd.cpp:66:34: error: ‘uint32x4_t’ does not name a type
 inline void ARIA_GSRK_NEON(const uint32x4_t X, const uint32x4_t Y, byte RK[16])
                                  ^
../aria_simd.cpp:66:54: error: ‘uint32x4_t’ does not name a type
 inline void ARIA_GSRK_NEON(const uint32x4_t X, const uint32x4_t Y, byte RK[16])
                                                      ^
../aria_simd.cpp: In function ‘void CryptoPP::ARIA_UncheckedSetKey_Schedule_NEON(CryptoPP::byte*, CryptoPP::word32*, unsigned int)’:
../aria_simd.cpp:81:8: error: ‘uint32x4_t’ does not name a type
  const uint32x4_t w0 = vld1q_u32(ws+ 0);
        ^
../aria_simd.cpp:82:8: error: ‘uint32x4_t’ does not name a type
  const uint32x4_t w1 = vld1q_u32(ws+ 8);
        ^
../aria_simd.cpp:83:8: error: ‘uint32x4_t’ does not name a type
  const uint32x4_t w2 = vld1q_u32(ws+12);
        ^
../aria_simd.cpp:84:8: error: ‘uint32x4_t’ does not name a type
  const uint32x4_t w3 = vld1q_u32(ws+16);
        ^
../aria_simd.cpp:86:21: error: ‘w0’ was not declared in this scope
  ARIA_GSRK_NEON<19>(w0, w1, rk +   0);
                     ^
../aria_simd.cpp:86:25: error: ‘w1’ was not declared in this scope
  ARIA_GSRK_NEON<19>(w0, w1, rk +   0);
                         ^
../aria_simd.cpp:87:25: error: ‘w2’ was not declared in this scope
  ARIA_GSRK_NEON<19>(w1, w2, rk +  16);
                         ^
../aria_simd.cpp:88:25: error: ‘w3’ was not declared in this scope
  ARIA_GSRK_NEON<19>(w2, w3, rk +  32);
                         ^
../aria_simd.cpp: At global scope:
../aria_simd.cpp:79:59: warning: unused parameter ‘ws’ [-Wunused-parameter]
 void ARIA_UncheckedSetKey_Schedule_NEON(byte* rk, word32* ws, unsigned int keylen)
                                                           ^
../aria_simd.cpp: In function ‘void CryptoPP::ARIA_ProcessAndXorBlock_NEON(const byte*, CryptoPP::byte*, const byte*, CryptoPP::word32*)’:
../aria_simd.cpp:137:22: error: ‘vld1q_u8’ was not declared in this scope
     vld1q_u8(xorBlock),
                      ^
../aria_simd.cpp:140:31: error: ‘vrev32q_u8’ was not declared in this scope
      vrev32q_u8(vld1q_u8((rk))))));
                               ^
../aria_simd.cpp:140:32: error: ‘veorq_u8’ was not declared in this scope
      vrev32q_u8(vld1q_u8((rk))))));
                                ^
../aria_simd.cpp:140:33: error: ‘veorq_u8’ was not declared in this scope
      vrev32q_u8(vld1q_u8((rk))))));
                                 ^
../aria_simd.cpp:140:33: error: redeclaration of ‘<typeprefixerror>veorq_u8’
../aria_simd.cpp:140:32: note: previous declaration ‘<typeprefixerror>veorq_u8’
      vrev32q_u8(vld1q_u8((rk))))));
                                ^
../aria_simd.cpp:140:34: error: ‘vst1q_u8’ was not declared in this scope
      vrev32q_u8(vld1q_u8((rk))))));
                                  ^
../aria_simd.cpp:146:22: error: ‘vld1q_u8’ was not declared in this scope
     vld1q_u8(outBlock),
                      ^
../aria_simd.cpp:147:28: error: ‘vrev32q_u8’ was not declared in this scope
     vrev32q_u8(vld1q_u8(rk))));
                            ^
../aria_simd.cpp:147:29: error: ‘veorq_u8’ was not declared in this scope
     vrev32q_u8(vld1q_u8(rk))));
                             ^
../aria_simd.cpp:147:30: error: ‘vst1q_u8’ was not declared in this scope
     vrev32q_u8(vld1q_u8(rk))));
                              ^
Makefile:1378: recipe for target 'aria_simd.o' failed
make: *** [aria_simd.o] Error 1

原因:

Makefile中的加上-mfloat-abi=softfp -mfpu=neon编译选项:

CXXFLAGS      = -pipe  -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC $(DEFINES) -mfloat-abi=softfp -mfpu=neon


3.问题3,这个是编译测试代码时的问题:

arm-hisiv500-linux-g++ -Wl,-O1 -Wl,-rpath,/opt/qt5.12-arm/lib -o ../bin/CerealApp temp/obj/harddriver.o temp/obj/main.o temp/obj/registerhandle.o temp/obj/moc_registerhandle.o   -lcryptopp /opt/qt5.12-arm/lib/libQt5Charts.so /opt/qt5.12-arm/lib/libQt5Widgets.so /opt/qt5.12-arm/lib/libQt5Gui.so /opt/qt5.12-arm/lib/libQt5Network.so /opt/qt5.12-arm/lib/libQt5Sql.so /opt/qt5.12-arm/lib/libQt5SerialPort.so /opt/qt5.12-arm/lib/libQt5Core.so -lpthread   
/opt/hisi-linux/x86-arm/arm-hisiv500-linux/bin/../target/usr/lib/libcryptopp.a(rijndael.o):在函数‘CryptoPP::CRYPTOGAMS_set_encrypt_key(unsigned char const*, int, unsigned int*)’中:
rijndael.cpp:(.text+0x300):对‘AES_set_encrypt_key’未定义的引用
/opt/hisi-linux/x86-arm/arm-hisiv500-linux/bin/../target/usr/lib/libcryptopp.a(rijndael.o):在函数‘CryptoPP::CRYPTOGAMS_set_decrypt_key(unsigned char const*, int, unsigned int*)’中:
rijndael.cpp:(.text+0x304):对‘AES_set_decrypt_key’未定义的引用
/opt/hisi-linux/x86-arm/arm-hisiv500-linux/bin/../target/usr/lib/libcryptopp.a(rijndael.o):在函数‘CryptoPP::CRYPTOGAMS_encrypt(unsigned char const*, unsigned char const*, unsigned char*, unsigned int const*)’中:
rijndael.cpp:(.text+0x31c):对‘AES_encrypt’未定义的引用
/opt/hisi-linux/x86-arm/arm-hisiv500-linux/bin/../target/usr/lib/libcryptopp.a(rijndael.o):在函数‘CryptoPP::CRYPTOGAMS_decrypt(unsigned char const*, unsigned char const*, unsigned char*, unsigned int const*)’中:
rijndael.cpp:(.text+0xadc):对‘AES_decrypt’未定义的引用
collect2: error: ld returned 1 exit status
Makefile:206: recipe for target '../bin/CerealApp' failed
make: *** [../bin/CerealApp] Error 1

问题原因是:

aes_armv4.S文件没有编译,在使用qmake生成工程文件时,该文件没有被加进去,

只需要在工程文件里的添加到source,然后重新执行qmake生成Makefile,再次编译没有问题了。

 

使用方法,核心代码:

   //------------------------
    // 生成RSA密钥对
    //------------------------
    void GenerateRSAKey(unsigned int keyLength, const char *privFilename, const char *pubFilename, const char *seed){
        RandomPool randPool;
        randPool.IncorporateEntropy((unsigned char *)seed, strlen(seed));
 
        RSAES_OAEP_SHA_Decryptor priv(randPool, keyLength);
        HexEncoder privFile(new FileSink(privFilename));
        priv.AccessMaterial().Save(privFile);
        privFile.MessageEnd();
 
        RSAES_OAEP_SHA_Encryptor pub(priv);
        HexEncoder pubFile(new FileSink(pubFilename));
        pub.AccessMaterial().Save(pubFile);
        pubFile.MessageEnd();
    }
 
    //------------------------
    // RSA加密
    //------------------------
    string RSAEncryptString(const char *pubFilename, const char *seed, const char *message){
 
        FileSource pubFile(pubFilename, true, new HexDecoder);
        RSAES_OAEP_SHA_Encryptor pub(pubFile);
 
        RandomPool randPool;
        randPool.IncorporateEntropy((unsigned char *)seed, strlen(seed));
 
        std::string result;
        StringSource(message, true, new PK_EncryptorFilter(randPool, pub, new HexEncoder(new StringSink(result))));
        return result;
    }
 
    //------------------------
    // RSA解密
    //------------------------
    string RSADecryptString(const char *privFilename, const char *ciphertext){
        FileSource privFile(privFilename, true, new HexDecoder);
        RSAES_OAEP_SHA_Decryptor priv(privFile);
 
        std::string result;
        try{
            StringSource(ciphertext, true,
                         new HexDecoder(new PK_DecryptorFilter(GlobalRNG(), priv, new StringSink(result))));
        }
        catch(const Exception &e)
        {
            std::cout << "\nException caught: " << e.what() << std::endl;
            return "";
        }
        catch(const std::exception &e)
        {
            std::cout << "\nstd::exception caught: " << e.what() << std::endl;
            return "";
        }
//        std::cout << "result: " << result<< std::endl;
 
        return result;
    }
目录
相关文章
|
2月前
|
C++
vtkdicom0.8_vtk9.2_dcmtk3.6.7_qt6.2编译OK
本文介绍了如何编译整合VTK 9.2、DICOM 0.8、DCMTK 3.6.7和Qt 6.2的步骤,包括安装Qt、CMake配置以及确认相关路径和版本设置。
vtkdicom0.8_vtk9.2_dcmtk3.6.7_qt6.2编译OK
|
2月前
|
Unix 网络虚拟化 C++
VS2022+Qt5.14.2成功编译MITK2022.10
使用VS2022和Qt5.14.2成功编译MITK2022.10的过程,包括编译结果的截图、遇到的编译问题的解决方法、两个重要的注意事项(patch文件格式的修改和ITK-gitclone-lastrun文件的存在),以及参考链接。文中详细描述了如何解决编译过程中遇到的错误C2220和警告C4819,以及如何修改文件编码和尾行格式。
121 1
VS2022+Qt5.14.2成功编译MITK2022.10
|
2月前
|
计算机视觉
vs2019_qt6.2.4_dcmtk3.6.7_vtk9.2.2_itk5.3_opencv4.6.0编译记录
这篇文章记录了使用VS2019编译Qt6.2.4、DCMTK3.6.7、VTK9.2.2、ITK5.3和OpenCV4.6.0的过程,包括下载和编译步骤,并提供了遇到编译错误时的解决方案和参考链接。
vs2019_qt6.2.4_dcmtk3.6.7_vtk9.2.2_itk5.3_opencv4.6.0编译记录
|
2月前
|
C语言 C++ Windows
QT多插件通信框架CTK编译记录
本文记录了编译QT多插件通信框架CTK的过程,包括编译结果截图、部署配置、Log4Qt编译配置、参考链接和拓展资料。文中提供了详细的编译步骤和配置文件示例,以及相关的资源链接。
QT多插件通信框架CTK编译记录
|
2月前
|
机器学习/深度学习 Java 计算机视觉
opencv4.5.5+qt5.15.2+vtk9.1+mingw81_64编译记录
本文记录了使用mingw81_64编译OpenCV 4.5.5、Qt 5.15.2、VTK 9.1的详细过程,包括编译结果截图、编译步骤、遇到的问题及其解决方案,以及相关参考链接。文中还提到了如何编译boost源码为静态库,并提供了测试代码示例。
opencv4.5.5+qt5.15.2+vtk9.1+mingw81_64编译记录
|
2月前
|
C语言
BOOST1.75+QT5.15.2编译记录
本文记录了BOOST 1.75与Qt 5.15.2编译过程的详细步骤,包括编译结果截图、将boost源码编译为静态库的步骤,以及如何在Qt项目中使用BOOST库的测试代码。文章还提供了相关参考链接,以帮助解决在编译和使用过程中可能遇到的问题。
BOOST1.75+QT5.15.2编译记录
|
2月前
|
IDE 开发工具 C++
qt creator + vs2019编译记录
本文记录了作者在使用qt creator和vs2019编译项目时遇到的困难和解决方案,包括编译环境设置、qt creator编译脚本的成功案例、不带Ninja的编译脚本问题、错误示范以及相关参考链接。
qt creator + vs2019编译记录
|
4月前
|
数据安全/隐私保护 C++ 计算机视觉
Qt(C++)开发一款图片防盗用水印制作小工具
文本水印是一种常用的防盗用手段,可以将文本信息嵌入到图片、视频等文件中,用于识别和证明文件的版权归属。在数字化和网络化的时代,大量的原创作品容易被不法分子盗用或侵犯版权,因此加入文本水印成为了保护原创作品和维护知识产权的必要手段。 通常情况下,文本水印可以包含版权声明、制作者姓名、日期、网址等信息,以帮助识别文件的来源和版权归属。同时,为了增强防盗用效果,文本水印通常会采用字体、颜色、角度等多种组合方式,使得水印难以被删除或篡改,有效地降低了盗用意愿和风险。 开发人员可以使用图像处理技术和编程语言实现文本水印的功能,例如使用Qt的QPainter类进行文本绘制操作,将文本信息嵌入到图片中,
176 1
Qt(C++)开发一款图片防盗用水印制作小工具
|
3月前
|
监控 C++ 容器
【qt】MDI多文档界面开发
【qt】MDI多文档界面开发
84 0
|
2月前
|
开发工具 C++
qt开发技巧与三个问题点
本文介绍了三个Qt开发中的常见问题及其解决方法,并提供了一些实用的开发技巧。