AES 加密代码

AES 加密代码 这是从动网项目中挖出来的AES加密代码

 

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;


namespace AES
{
    
class AES
    {

        
//默认密钥向量
        
//private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
        private static byte[] Keys = { 0x410x720x650x790x6F0x750x6D0x790x530x6E0x6F0x770x6D0x610x6E0x3F };

        
/// <summary>
        
/// AES加密
        
/// </summary>
        
/// <param name="encryptString">要加密的字符</param>
        
/// <param name="encryptKey">对应的密钥(不可为中文)</param>
        
/// <returns></returns>
        public static string Encode(string encryptString, string encryptKey)
        {
            encryptKey 
= Utils.GetSubString(encryptKey, 32"");
            encryptKey 
= encryptKey.PadRight(32' ');

            RijndaelManaged rijndaelProvider 
= new RijndaelManaged();
            rijndaelProvider.Key 
= Encoding.UTF8.GetBytes(encryptKey.Substring(032));
            rijndaelProvider.IV 
= Keys;
            ICryptoTransform rijndaelEncrypt 
= rijndaelProvider.CreateEncryptor();

            
byte[] inputData = Encoding.UTF8.GetBytes(encryptString);
            
byte[] encryptedData = rijndaelEncrypt.TransformFinalBlock(inputData, 0, inputData.Length);

            
return Convert.ToBase64String(encryptedData);
        }

        
/// <summary>
        
/// AES解密
        
/// </summary>
        
/// <param name="decryptString">要解密的字符(该字符必须是已经加密过的字符)</param>
        
/// <param name="decryptKey">解密的密钥,该密钥要和加密的密钥一致</param>
        
/// <returns></returns>
        public static string Decode(string decryptString, string decryptKey)
        {
            
try
            {
                decryptKey 
= Utils.GetSubString(decryptKey, 32"");
                decryptKey 
= decryptKey.PadRight(32' ');

                RijndaelManaged rijndaelProvider 
= new RijndaelManaged();
                rijndaelProvider.Key 
= Encoding.UTF8.GetBytes(decryptKey);
                rijndaelProvider.IV 
= Keys;
                ICryptoTransform rijndaelDecrypt 
= rijndaelProvider.CreateDecryptor();

                
byte[] inputData = Convert.FromBase64String(decryptString);
                
byte[] decryptedData = rijndaelDecrypt.TransformFinalBlock(inputData, 0, inputData.Length);

                
return Encoding.UTF8.GetString(decryptedData);
            }
            
catch
            {
                
return "";
            }

        }
    }
}

 

这是个工具类

 

ContractedBlock.gifExpandedBlockStart.gifCode
using System;
using System.Collections.Generic;
using System.Text;

namespace AES
{
   
public class Utils
    {
        
/// <summary>
        
/// 字符串如果操过指定长度则将超出的部分用指定字符串代替
        
/// </summary>
        
/// <param name="p_SrcString">要检查的字符串</param>
        
/// <param name="p_Length">指定长度</param>
        
/// <param name="p_TailString">用于替换的字符串</param>
        
/// <returns>截取后的字符串</returns>
        public static string GetSubString(string p_SrcString, int p_Length, string p_TailString)
        {
            
return GetSubString(p_SrcString, 0, p_Length, p_TailString);
        }


        
/// <summary>
        
/// 取指定长度的字符串
        
/// </summary>
        
/// <param name="p_SrcString">要检查的字符串</param>
        
/// <param name="p_StartIndex">起始位置</param>
        
/// <param name="p_Length">指定长度</param>
        
/// <param name="p_TailString">用于替换的字符串</param>
        
/// <returns>截取后的字符串</returns>
        public static string GetSubString(string p_SrcString, int p_StartIndex, int p_Length, string p_TailString)
        {


            
string myResult = p_SrcString;

            
//当是日文或韩文时(注:中文的范围:\u4e00 - \u9fa5, 日文在\u0800 - \u4e00, 韩文为\xAC00-\xD7A3)
            if (System.Text.RegularExpressions.Regex.IsMatch(p_SrcString, "[\u0800-\u4e00]+"||
                System.Text.RegularExpressions.Regex.IsMatch(p_SrcString, 
"[\xAC00-\xD7A3]+"))
            {
                
//当截取的起始位置超出字段串长度时
                if (p_StartIndex >= p_SrcString.Length)
                {
                    
return "";
                }
                
else
                {
                    
return p_SrcString.Substring(p_StartIndex,
                                                   ((p_Length 
+ p_StartIndex) > p_SrcString.Length) ? (p_SrcString.Length - p_StartIndex) : p_Length);
                }
            }


            
if (p_Length >= 0)
            {
                
byte[] bsSrcString = Encoding.Default.GetBytes(p_SrcString);

                
//当字符串长度大于起始位置
                if (bsSrcString.Length > p_StartIndex)
                {
                    
int p_EndIndex = bsSrcString.Length;

                    
//当要截取的长度在字符串的有效长度范围内
                    if (bsSrcString.Length > (p_StartIndex + p_Length))
                    {
                        p_EndIndex 
= p_Length + p_StartIndex;
                    }
                    
else
                    {   
//当不在有效范围内时,只取到字符串的结尾

                        p_Length 
= bsSrcString.Length - p_StartIndex;
                        p_TailString 
= "";
                    }



                    
int nRealLength = p_Length;
                    
int[] anResultFlag = new int[p_Length];
                    
byte[] bsResult = null;

                    
int nFlag = 0;
                    
for (int i = p_StartIndex; i < p_EndIndex; i++)
                    {

                        
if (bsSrcString[i] > 127)
                        {
                            nFlag
++;
                            
if (nFlag == 3)
                            {
                                nFlag 
= 1;
                            }
                        }
                        
else
                        {
                            nFlag 
= 0;
                        }

                        anResultFlag[i] 
= nFlag;
                    }

                    
if ((bsSrcString[p_EndIndex - 1> 127&& (anResultFlag[p_Length - 1== 1))
                    {
                        nRealLength 
= p_Length + 1;
                    }

                    bsResult 
= new byte[nRealLength];

                    Array.Copy(bsSrcString, p_StartIndex, bsResult, 
0, nRealLength);

                    myResult 
= Encoding.Default.GetString(bsResult);

                    myResult 
= myResult + p_TailString;
                }
            }

            
return myResult;
        }
    }
}

 

 

转载于:https://www.cnblogs.com/jiangguanghe/archive/2008/09/22/1296104.html

aes加密代码,非常完整,包括加密解密。 AESCrypt File Format Description Items in quotes are a literal string. Words outside of quotes are a textual description of the contents. Fixed-valued octets are written in hexidecimal form (e.g., 0x01). The AESCrypt version 2 file format is as follows. 3 Octets - 'AES' 1 Octet - 0x02 (Version) 1 Octet - Reserved .... Start of repeating extension block section 2 Octet - Length in octets (in network byte order) of an extension identifier and contents. If 0x0000, then no further extensions exist and the next octet is the start of the Initialization Vector (IV). Following an extension, this length indicator would appear again to indicate presence or absense of another extension and the size of any such extension. nn Octets - Extension identifier. This is either a URI or an identifier defined by the AES developer community and documented on the standard extensions page, either of which is terminated by a single 0x00 octet. All extension identifiers are case sensitive. Examples of URIs: http://www.aescrypt.com/extensions/creator/ urn:oid:1.3.6.1.4.1.17090.55.14 urn:uuid:85519EA3-1DA6-45b9-9041-8CD368D8C086 Note: A URI was used to allow anybody to define extension types, though we should strive to define a standard set of extensions. Examples of standard extension identifiers: CREATED-DATE CREATED-BY A special extension is defined that has no name, but is merely a "container" for extensions to be added after the AES file is initially created. Such an extension avoids the need to read and re-write the entire file in order to add a small extension. Software tools that create AES files should insert a 128-octet "container" extension, placing a 0x00 in the first octet of the extension identifier field. Developers may then insert extensions into this "container" area and reduce the size of this "container" as necessary. If larger extensions are added or the "container" area is filled entirely, then reading and re-writing the entire file would be necessary to add additional extensions. nn Octets - The contents of the extension .... End of repeating extension block section 16 Octets - Initialization Vector (IV) used for encrypting the IV and symmetric key that is actually used to encrypt the bulk of the plaintext file. 48 Octets - Encrypted IV and 256-bit AES key used to encrypt the bulk of the file 16 octets - Initialization Vector 32 octets - encryption key 32 Octets - HMAC nn Octets - Encrypted message (2^64 octets max) 1 Octet - File size modulo 16 in least significant bit positions 32 Octets - HMAC Thus, the footprint of the file is at least 136 octets. The AESCrypt version 1 file format is as follows. 3 Octets - 'AES' 1 Octet - 0x01 (Version) 1 Octet - Reserved 16 Octets - Initialization Vector (IV) used for encrypting the IV and symmetric key that is actually used to encrypt the bulk of the plaintext file. 48 Octets - Encrypted IV and 256-bit AES key used to encrypt the bulk of the file 16 octets - Initialization Vector 32 octets - encryption key 32 Octets - HMAC nn Octets - Encrypted message (2^64 octets max) 1 Octet - File size modulo 16 in least significant bit positions 32 Octets - HMAC Thus, the footprint of the file is at least 134 octets. The AESCrypt version 0 file format is as follows. 3 Octets - 'AES' 1 Octet - 0x00 (Version) 1 Octet - File size modulo 16 in least significant bit positions 16 Octets - Initialization Vector (IV) nn Octets - Encrypted message (2^64 octets max) 32 Octets - HMAC Thus, the footprint of the file is at least 53 octets.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值