继上次的dll学习后,想开发个软件,连接到百度的云存储服务器,上传文件。发现要算秘钥,在网上找了到了hmac-sha1,base64的源码,发现有些是c++写的,有些是c写的一起写到一个文件里有些麻烦。今天上午就把base64写成dll,方便调用,也算是对昨天学习的一次复习。
base64dll的编写
base64dll.h:
extern "C" BASE64DLL_API std::string base64_encode(unsigned char * , unsigned int len); extern "C" BASE64DLL_API std::string base64_decode(std::string & s);
base64dll.cpp:
/* * ===================================================================================== * * Filename: base64dll.cpp * Environment: * Description: base64dll,导出导出函数为base64_decode 和 base64_encode * * * Version: 1.0 * Created: 2013/10/29 11:04:34 * Author: yuliyang I* * Mail: wzyuliyang911@gmail.com * Blog: http://www.cnblogs.com/yuliyang * * ===================================================================================== */ // base64dll.cpp : 定义 DLL 应用程序的导出函数。 // #include "stdafx.h" #include "base64dll.h" #include <iostream> static const std::string base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "0123456789+/"; static inline bool is_base64(unsigned char c) { return (isalnum(c) || (c == '+') || (c == '/')); } // 这是导出变量的一个示例 BASE64DLL_API int nbase64dll=0; // 这是导出函数的一个示例。 BASE64DLL_API int fnbase64dll(void) { return 42; } /* * === FUNCTION ====================================================================== * Name: base64_encode * Description: base64加密 * ===================================================================================== */ extern "C" BASE64DLL_API std::string base64_encode(unsigned char * bytes_to_encode , unsigned int in_len){ std::string ret; int i = 0; int j = 0; unsigned char char_array_3[3]; unsigned char char_array_4[4]; while (in_len--) { char_array_3[i++] = *(bytes_to_encode++); if (i == 3) { char_array_4[0] = (char_array_3[0] & 0xfc) >> 2; char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4); char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6); char_array_4[3] = char_array_3[2] & 0x3f; for(i = 0; (i <4) ; i++) ret += base64_chars[char_array_4[i]]; i = 0; } } if (i) { for(j = i; j < 3; j++) char_array_3[j] = '