BASE64编码

base64 很常见。其原理是 将每个ascii 字符视为 unsigned char, 每三个char 3*8位,拆分为 4*6位char来存储。其中高两位用0填充。

今天看了下,自己实现。环境: VC6

上自己的代码:

#include <iostream>

#include <string>

using namespace std;

static const std::string data_str="ABCDEFGHIJKLMBOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

void encode_char(char src[], char* dest)
{
	dest[0] = ( src[0] >> 2 ) & 0x3f;

	short t =  ( src[1] >> 4 );

	dest[1] = t & 0x0f;
	t = ( src[0] & 0x3 );
	t = t << 4;
	dest[1] = dest[1] + t;

	t = ( src[1] & 0xf );
	dest[2] = t<<2;
	t = src[2] >> 6;

	dest[2] +=  t & 0x03;
	dest[3] = ( src[2] & 0x3f ) ;
	return ;
}

std::string encode_str(std::string src_str)
{
	size_t len = src_str.size();
	int i = 0;
	char src[3];
	char dest[4] = {0};

	std::string dest_src;
	for( int j = 0; j < len; ++j ) {
		
		src[i++] = src_str[j];
		if( 3 == i ) {
			encode_char( src, dest );

			for( i = 0; i < 4; i++) {
				dest_src += data_str[dest[i]];
				dest[i] = 0;
			}
			i = 0;
		}
	}

	if( 0 != i ) {
		for( j = i; j < 3; ++j ) {
			src[j] = '\0';
		}

		encode_char( src, dest );

		for( i=0; i < 4; ++i ) {
			dest_src +=  data_str[ dest[i] ];
		}
	}
	
	return dest_src;
}

void decode_char(char src[], char *dest)
{
	short t = ( src[0] << 2 ) ;
	dest[0] = t & 0xfc;
	t = ( src[1] >> 4 );
	dest[0] += t & 0x3;

	t = ( src[1] << 4 );
	dest[1] = t & 0xf0;
	t = ( src[2] >> 2 );
	dest[1] += t & 0xf;

	t = ( src[2] << 6 );
	dest[2] = t & 0xc0;
	dest[2] += src[3];
}

std::string decode_str(std::string dest_str)
{
	size_t len = dest_str.size();

	int i = 0;
	char src[4];
	char dest[3];

	std::string ret;

	for( int j = 0; j < len; ++j ) {
		
		src[i++] = data_str.find( dest_str[j] );
		if( 4 == i ) {
			decode_char( src, dest ); 

			for( i = 0; i < 3; ++i ) {
				ret +=  dest[i];
				dest[i] = 0;
			}
			i = 0;
		}
	}

	return ret;
}

int main()
{
//	std::string _str( "hello wang fang" );
	std::string _str;
	cout<<"please Enter a String:";
	cin>>_str;   // 有 bug, cin 将 space tab 和enter 作为输入结束符,如果输入 hello world 只会接收hello,详细请参考 下面给出链接
	
	std::string str(  encode_str( _str ) );
	cout<<str.c_str()<<endl;
	cout<<  decode_str( str ).c_str()<<endl;

	return 0;
}

有关cin的使用,输入输出: 点击这里 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值