C#實現(xiàn)Base64編碼與解碼及規(guī)則
一、編碼規(guī)則
Base64編碼的思想是是采用64個基本的ASCII碼字符對數(shù)據(jù)進行重新編碼。它將需要編碼的數(shù)據(jù)拆分成字節(jié)數(shù)組。以3個字節(jié)為一組。按順序排列24 位數(shù)據(jù),再把這24位數(shù)據(jù)分成4組,即每組6位。再在每組的的最高位前補兩個0湊足一個字節(jié)。這樣就把一個3字節(jié)為一組的數(shù)據(jù)重新編碼成了4個字節(jié)。當所要編碼的數(shù)據(jù)的字節(jié)數(shù)不是3的整倍數(shù),也就是說在分組時最后一組不夠3個字節(jié)。這時在最后一組填充1到2個0字節(jié)。并在最后編碼完成后在結尾添加1到2個 “=”。
例:將對ABC進行BASE64編碼:
1、首先取ABC對應的ASCII碼值。A(65)B(66)C(67);
2、再取二進制值A(01000001)B(01000010)C(01000011);
3、然后把這三個字節(jié)的二進制碼接起來(010000010100001001000011);
4、再以6位為單位分成4個數(shù)據(jù)塊,并在最高位填充兩個0后形成4個字節(jié)的編碼后的值,(00010000)(00010100)(00001001)(00000011),其中藍色部分為真實數(shù)據(jù);
5、再把這四個字節(jié)數(shù)據(jù)轉化成10進制數(shù)得(16)(20)(9)(3);
6、最后根據(jù)BASE64給出的64個基本字符表,查出對應的ASCII碼字符(Q)(U)(J)(D),這里的值實際就是數(shù)據(jù)在字符表中的索引。
注:BASE64字符表:ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
二、解碼規(guī)則
解碼過程就是把4個字節(jié)再還原成3個字節(jié)再根據(jù)不同的數(shù)據(jù)形式把字節(jié)數(shù)組重新整理成數(shù)據(jù)。
三、C#中的實現(xiàn)
編碼類:
/// <summary>
/// Base64編碼類。
/// 將byte[]類型轉換成Base64編碼的string類型。
/// </summary>
public class Base64Encoder
{
byte[] source;
int length, length2;
int blockCount;
int paddingCount;
public static Base64Encoder Encoder = new Base64Encoder();
public Base64Encoder()
{
}
private void init(byte[] input)
{
source = input;
length = input.Length;
if ((length % 3) == 0)
{
paddingCount = 0;
blockCount = length / 3;
}
else
{
paddingCount = 3 - (length % 3);
blockCount = (length + paddingCount) / 3;
}
length2 = length + paddingCount;
}
public string GetEncoded(byte[] input)
{
//初始化
init(input);
byte[] source2;
source2 = new byte[length2];
for (int x = 0; x < length2; x++)
{
if (x < length)
{
source2[x] = source[x];
}
else
{
source2[x] = 0;
}
}
byte b1, b2, b3;
byte temp, temp1, temp2, temp3, temp4;
byte[] buffer = new byte[blockCount * 4];
char[] result = new char[blockCount * 4];
for (int x = 0; x < blockCount; x++)
{
b1 = source2[x * 3];
b2 = source2[x * 3 + 1];
b3 = source2[x * 3 + 2];
temp1 = (byte)((b1 & 252) >> 2);
temp = (byte)((b1 & 3) << 4);
temp2 = (byte)((b2 & 240) >> 4);
temp2 += temp;
temp = (byte)((b2 & 15) << 2);
temp3 = (byte)((b3 & 192) >> 6);
temp3 += temp;
temp4 = (byte)(b3 & 63);
buffer[x * 4] = temp1;
buffer[x * 4 + 1] = temp2;
buffer[x * 4 + 2] = temp3;
buffer[x * 4 + 3] = temp4;
}
for (int x = 0; x < blockCount * 4; x++)
{
result[x] = sixbit2char(buffer[x]);
}
switch (paddingCount)
{
case 0: break;
case 1: result[blockCount * 4 - 1] = '='; break;
case 2: result[blockCount * 4 - 1] = '=';
result[blockCount * 4 - 2] = '=';
break;
default: break;
}
return new string(result);
}
private char sixbit2char(byte b)
{
char[] lookupTable = new char[64]{
'A','B','C','D','E','F','G','H','I','J','K','L','M',
'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
'a','b','c','d','e','f','g','h','i','j','k','l','m',
'n','o','p','q','r','s','t','u','v','w','x','y','z',
'0','1','2','3','4','5','6','7','8','9','+','/'};
if ((b >= 0) && (b <= 63))
{
return lookupTable[(int)b];
}
else
{
return ' ';
}
}
}
解碼類:
///<summary>
///Base64解碼類
///將Base64編碼的string類型轉換成byte[]類型
///</summary>
publicclassBase64Decoder
{
char[]source;
intlength,length2,length3;
intblockCount;
intpaddingCount;
publicstaticBase64DecoderDecoder=newBase64Decoder();
publicBase64Decoder()
{
}
privatevoidinit(char[]input)
{
inttemp=0;
source=input;
length=input.Length;
for(intx=0;x<2;x++)
{
if(input[length-x-1]=='=')
temp++;
}
paddingCount=temp;
blockCount=length/4;
length2=blockCount*3;
}
publicbyte[]GetDecoded(stringstrInput)
{
//初始化
init(strInput.ToCharArray());
byte[]buffer=newbyte[length];
byte[]buffer2=newbyte[length2];
for(intx=0;x<length;x++)
{
buffer[x]=char2sixbit(source[x]);
}
byteb,b1,b2,b3;
bytetemp1,temp2,temp3,temp4;
for(intx=0;x<blockCount;x++)
{
temp1=buffer[x*4];
temp2=buffer[x*4+1];
temp3=buffer[x*4+2];
temp4=buffer[x*4+3];
b=(byte)(temp1<<2);
b1=(byte)((temp2&48)>>4);
b1+=b;
b=(byte)((temp2&15)<<4);
b2=(byte)((temp3&60)>>2);
b2+=b;
b=(byte)((temp3&3)<<6);
b3=temp4;
b3+=b;
buffer2[x*3]=b1;
buffer2[x*3+1]=b2;
buffer2[x*3+2]=b3;
}
length3=length2-paddingCount;
byte[]result=newbyte[length3];
for(intx=0;x<length3;x++)
{
result[x]=buffer2[x];
}
returnresult;
}
privatebytechar2sixbit(charc)
{
char[]lookupTable=newchar[64]{
'A','B','C','D','E','F','G','H','I','J','K','L','M','N',
'O','P','Q','R','S','T','U','V','W','X','Y','Z',
'a','b','c','d','e','f','g','h','i','j','k','l','m','n',
'o','p','q','r','s','t','u','v','w','x','y','z',
'0','1','2','3','4','5','6','7','8','9','+','/'};
if(c=='=')
return0;
else
{
for(intx=0;x<64;x++)
{
if(lookupTable[x]==c)
return(byte)x;
}
return0;
}
}
}
//解碼類結束
提示:
上面的代碼只是說明base64編碼的原理,以便用更多語言重寫。但.net里面可以使用更簡單的方法:
編碼:
byte[]bytes=Encoding.Default.GetBytes("要轉換的字符串");
Convert.ToBase64String(bytes);
解碼:
//"ztKwrsTj"是“我愛你”的base64編碼
byte[]outputb=Convert.FromBase64String("ztKwrsTj");
stringorgStr=Encoding.Default.GetString(outputb);
到此這篇關于C#實現(xiàn)Base64編碼與解碼的文章就介紹到這了,更多相關C#實現(xiàn)Base64編碼與解碼內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Windows系統(tǒng)中使用C#讀取文本文件內容的小示例
這篇文章主要介紹了Windows系統(tǒng)中使用C#讀取文本文件內容的小示例,包括一次一行地讀取文本文件的方法,需要的朋友可以參考下2016-02-02
C#使用SQL DataAdapter數(shù)據(jù)適配代碼實例
今天小編就為大家分享一篇關于C#使用SQL DataAdapter數(shù)據(jù)適配代碼實例,小編覺得內容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧2018-10-10
C#拆分字符串正則表達式Regex.Split和String.Split方法
這篇文章主要給大家介紹了關于C#拆分字符串正則表達式Regex.Split和String.Split方法的相關資料,在C#中,Regex.Split方法和string.Split方法都用于分割字符串,但它們有一些重要的區(qū)別,文中通過代碼詳細講解下,需要的朋友可以參考下2024-04-04
C#采用FileSystemWatcher實現(xiàn)監(jiān)視磁盤文件變更的方法
這篇文章主要介紹了C#采用FileSystemWatcher實現(xiàn)監(jiān)視磁盤文件變更的方法,詳細分析了FileSystemWatcher的用法,并以此為基礎實現(xiàn)監(jiān)視磁盤文件變更,是非常實用的技巧,具有一定的借鑒價值,需要的朋友可以參考下2014-11-11

