-
Using C++ language implementation of the RSA encryption algorithm, the code deta...
用C++语言实现的RSA加密算法,代码中有详细的注释,可以很好的运行。代码效率不错。-Using C++ language implementation of the RSA encryption algorithm, the code detailed notes, can be a very good run. Good code efficiency.
- 2022-07-07 04:20:09下载
- 积分:1
-
Wireless Sensor Network Key Management Scheme simulation program can be simulati...
Wireless Sensor Network密钥管理方案仿真程序,可仿真Laurent Eschenauer和Virgil D. Gligor提出的基于随机图理论的管理方案以及其他多种自定义密钥管理方案。-Wireless Sensor Network Key Management Scheme simulation program can be simulation Laurent Eschenauer and Virgil D. Gligor proposed a random graph theory-based management programs, as well as a variety of other custom key management program.
- 2022-02-06 04:47:28下载
- 积分:1
-
RFID read
RFID 读写 Psion Teklogix-RFID read-write Psion Teklogix
- 2022-01-21 19:45:49下载
- 积分:1
-
用VB5.0获取正在系统中运行的窗口标题
用VB5.0获取正在系统中运行的窗口标题-with VB5.0 access system is running a window title
- 2022-07-10 18:38:26下载
- 积分:1
-
学习C++的最好帮手 最经典的书籍C++ PRIME PLUS
学习C++的最好帮手 最经典的书籍C++ PRIME PLUS-Learning C++ Best help the most classic books C++ PRIME PLUS
- 2022-08-23 13:54:52下载
- 积分:1
-
图片打印程序( )
图片打印程序( )-print
- 2022-11-11 15:10:04下载
- 积分:1
-
在VC下,简单的实现通过本机IP包的识别
在VC下,简单的实现通过本机IP包的识别-In the VC, the simple implementation of IP packets through the machine identification of
- 2022-02-03 14:48:51下载
- 积分:1
-
online hotel reservation system
关于酒店预订系统的建议,文件,和实施.简介关于酒店的说明和使用php的完整编程代码。全方位的酒店界面,视觉使命。
- 2023-08-16 00:30:02下载
- 积分:1
-
利用FTP协议进行文件浏览的程序源码,有很好的学习价值
利用FTP协议进行文件浏览的程序源码,有很好的学习价值-use FTP file access to the source codes, a very good value learning
- 2022-03-26 04:10:15下载
- 积分:1
-
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