• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

c++实现加载so动态库中的资源

c++ 搞代码 4年前 (2022-01-06) 30次浏览 已收录 0个评论

下面小编就为大家带来一篇c++实现加载so动态库中的资源。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

实例如下:

 #include  #include  #include  #include  //编译命令 g++ -m32 EncodeOrDecode.cpp -ldl -o edcode //名字通过nm -D xxxxxx.so获取 using namespace std; int main(int argc,char **argv){ void *handle = dlopen("./libpub_com_service.so",RTLD_LAZY); if(!handle){ printf("open libpub error ,dlerror=%s\n",dlerror()); return -1; } string src = "05d7151349b7fe9b54306d90f9c938b3"; string desKey = "pub.%?d5";//58 printf("start ..src=[%s].....size=[%d].\n",src.c_str(),src.size()); //encode typedef string (*encode_t)(const string enc<a style="color:transparent">来源gao*daima.com搞@代#码网</a>odeSrc,const string encodeKey); encode_t encode = (encode_t)dlsym(handle,"_ZN10NS_PUB_API9DesEncodeESsSs"); if(!encode){ printf("not found encode function ,dlerror= %s \n",dlerror()); dlclose(handle); return -1; } string encodeStr = encode(src,desKey); printf("get the encode function success ..encodeStr=[%s].....size=[%d]\n",encodeStr.c_str(),encodeStr.size()); //decode typedef bool (*decode_t)(const string decodeSrc,const string decodeKey,string &outResult); decode_t decode = (decode_t)dlsym(handle,"_ZN10NS_PUB_API9DesDecodeESsSsRSs"); if(!decode){ printf("not found decode function ,dlerror= %s \n",dlerror()); dlclose(handle); return -1; } string decodeOut; bool ret = decode(encodeStr,desKey,decodeOut); printf("get the decode function success ...ret=[%d]...decodeOut=[%s].....size=[%d]\n",ret,decodeOut.c_str(),decodeOut.size()); //end dlclose(handle); return 0; }

以上就是c++实现加载so动态库中的资源的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:c++实现加载so动态库中的资源
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址