-
kakabossskdr
/*
base64.cpp 和 base64.h
版权所有 (C) 2004年-2008 René Nyffenegger
提供此源代码 " 作为-是 ",没有任何明示或暗示
保修。在没有事件将作者举行任何损害承担责任
因使用本软件。
授予任何人出于任何目的,使用此软件的权限
包括商业应用程序进行修改和重新发布它
自由,受到以下限制:
1.此源代码的起源必须不得歪曲 ;你必须不
声称是你写的原始源代码。如果您使用此源代码
在一种产品,确认产品文档中将
表示赞赏,但不是必需的。
2.改变源版本为此,必须有明确标记和一定不能
谎称为原始的源代码。
3.本公告不可能会被删除,或从任何源分布改动。
勒内 · Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
#include"stdafx.h"
//#include"base64.h"
#include"msvc_common.h"
#include < iostream >
静态 const std::string base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
""abcdefghijklmnopqrstuvwxyz
"0123456789 +";
静态内联 bool is_base64 (无符号的 char c) {
返回 (isalnum(c) | |(c == "+") ||(c == "/"));
}
std::string base64_encode (无符号的 char const * bytes_to_encode、 无符号的 in
- 2022-12-20 14:15:03下载
- 积分:1
-
Sellin Programme
- 2022-04-20 07:24:16下载
- 积分:1
-
EVC prepared, S3c2440 test platform, DGraph kind of a use, the realization of th...
EVC编写,S3c2440平台测试通过,DGraph类的一个使用,实现对话框上的坐标图全屏显示以及退出全屏显示的切换-EVC prepared, S3c2440 test platform, DGraph kind of a use, the realization of the dialog box on the full screen map coordinates, as well as switching out of full screen
- 2022-03-24 21:58:11下载
- 积分:1
-
用VISUAL C++编程实现指纹图像的特征提取以及对指纹图像的识别。...
用VISUAL C++编程实现指纹图像的特征提取以及对指纹图像的识别。-A program of extracting and identifying features of fingerprint images.
- 2022-02-12 12:55:31下载
- 积分:1
-
采用WPF框架编写的多项式拟合软件,能显示拟合效果
采用WPF作为框架,构建界面,使得界面美观,易于操作。能提供任意幂次的多项式拟合。本程序采用Gauss按比例列主元消去法来解法方程组。采用开源作图控件ZedGraph来显示拟合效果。
- 2023-02-02 09:00:03下载
- 积分:1
-
如题, 如题, 如题, 如题, 如题, 如题,
如题, 如题, 如题, 如题, 如题, 如题,-如题,如题,如题,如题,如题,如题,如题,如题,如题,如题,如题,如题,如题,如题,
- 2023-07-25 12:50:03下载
- 积分:1
-
可以获取电脑总的磁盘容量和剩余磁盘时间,其中包括定时查询和系统托盘设计,剩余容量不足警告等内容。...
可以获取电脑总的磁盘容量和剩余磁盘时间,其中包括定时查询和系统托盘设计,剩余容量不足警告等内容。-The computer can get the total disk capacity and remaining disk time, including the timing query and the system tray design, the remaining capacity of less than a warning and so on.
- 2022-04-30 08:12:13下载
- 积分:1
-
3d Tic Tac Toe game
最佳井字游戏程序,,,,,,,,,,
- 2022-04-11 01:13:57下载
- 积分:1
-
本程序介绍如何判别并定位到光驱软驱,并进行读写
本程序介绍如何判别并定位到光驱软驱,并进行读写-the procedures on how to identifying and positioning of the floppy drive, and write
- 2022-03-07 18:58:47下载
- 积分:1
-
LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长...
LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长的1序列,其对应的位置就是最长匹配子串的位置。 最长递增子序列LCS的实现C源码!-LCS problem for two strings is the longest common sub-string problem. Solution is to use a matrix to record the location of two strings of all the matches between the two characters in the situation, if the match is one, otherwise to 0. And one of the longest diagonal obtained sequence, the location of its corresponding sub-string match is the longest position. The longest increasing sub-sequence source C implementation of the LCS!
- 2022-08-19 18:20:36下载
- 积分:1