通过NDK在Android项目中包含加密库

我想在Android NDK项目中包含Crypto(http://www.cryptopp.com/).我希望能够从我的代码的C部分调用Crypto成员函数.我以为我可以在我的C代码中包含来自Crypto的头文件和源代码,但我似乎无法让它工作.

我的C文件如下所示:

#include <jni.h>
#include "cryptopp/modes.h"
#include "cryptopp/aes.h"
using namespace CryptoPP;
...

使用cryptopp子目录中的所有Crypto头文件和源文件.

最初我收到很多编译错误,因为没有找到标准的C库,但我通过添加Application.mk修复了以下行:

APP_STL := stlport_static

使用ndk-build(标准版和结构版)进行编译会给出以下错误:

ABI='armeabi'
ABI='armeabi-v7a'
ABI='x86'
Gdbserver      : [arm-linux-androideabi-4.4.3] libs/armeabi/gdbserver
Gdbsetup       : libs/armeabi/gdb.setup
Compile++ thumb  : ndk-tests-cpp <= ndk-tests.cpp
In file included from jni/cryptopp/modes.h:7,
             from jni/ndk-tests.cpp:2:
jni/cryptopp/cryptlib.h: In static member function 'static void CryptoPP::NameValuePairs::ThrowIfTypeMismatch(const char*, const std::type_info&, const std::type_info&)':
jni/cryptopp/cryptlib.h:291: error: exception handling disabled, use -fexceptions to enable
make: *** [obj/local/armeabi/objs-debug/ndk-tests-cpp/ndk-tests.o] Error 1

我之前从未在NDK项目中包含外部库 – 也许我只是忽略了一些基本的东西.

解决方法:

您必须为Android项目启用例外.尝试将这些行包含到您的Applications.mk中:

APP_CPPFLAGS += -frtti 
APP_CPPFLAGS += -fexceptions
上一篇:c – 在加密中将十六进制字符串转换为字节


下一篇:python非对称加密模块rsa