硬件学院 | 网络学院 | 游戏秘籍 | 求职技巧 | 企业管理 | 软件资讯 | IT导购 | 软件下载 | 源码下载
软件学院 | 安全资讯 | 图形图象 | 网络营销 | 电子商务 | 硬件资讯 | IT生活 | 教程下载 | 电影娱乐
网站首页    个人求职    单位招聘    高校联盟    猎头服务    培训服务    资讯中心    IT论坛
让每一个热爱IT的人都找到一份满意的工作!
文章搜索:
 您的位置首页->-> 软件学院-> .NET技术-> 加密与解密
加密与解密
作者:中国资讯网 来源:zixuen.com 加入时间:2005-5-12 www.cnitrc.com
Imports System.IO
Imports System.Security.Cryptography

'数据加/解密 类
Public Class CryData
'加密密钥,初始化向量
Public ReadOnly cryKey As Byte() = {9, 4, 2, 8, 5, 1, 4, 9, 7, 6, 9, 5, 1, 13, 7, 5, 14, 9, 10, 15, 0, 1, 14, 5, 9, 4, 3, 8, 2, 10}
Public ReadOnly cryIV As Byte() = {7, 1, 8, 8, 2, 8, 7, 1, 4, 5, 6, 3, 5, 6, 7}


' 文件加密
Public Sub EncryptData(ByVal inName As String, ByVal outName As String, _
Optional ByVal rijnKey() As Byte = Nothing, _
Optional ByVal rijnIV() As Byte = Nothing)

If rijnKey Is Nothing Then
rijnKey = cryKey


End If
If rijnIV Is Nothing Then
rijnIV = cryIV

End If
ReDim Preserve rijnKey(31)
ReDim Preserve rijnIV(15)

'Create the file streams to handle the input and output files.
Dim fin As New FileStream(inName, FileMode.Open, FileAccess.Read)
Dim fout As New FileStream(outName, FileMode.OpenOrCreate, FileAccess.ReadWrite)
fout.SetLength(0)

'Create variables to help with read and write.
Dim bin(1024) As Byte 'This is intermediate storage for the encryption.
Dim rdlen As Long = 0 'This is the total number of bytes written.
Dim totlen As Long = fin.Length 'Total length of the input file.
Dim len As Integer 'This is the number of bytes to be written at a time.
'Creates the default implementation, which is RijndaelManaged.
Dim rijn As SymmetricAlgorithm = SymmetricAlgorithm.Create()
Dim encStream As New CryptoStream(fout, _
rijn.CreateEncryptor(rijnKey, rijnIV), CryptoStreamMode.Write)

' Console.WriteLine("Encrypting...")

'Read from the input file, then encrypt and write to the output file.
While rdlen < totlen
len = fin.Read(bin, 0, 1024)
encStream.Write(bin, 0, len)
rdlen = Convert.ToInt32(rdlen + len)
' Console.WriteLine("{0} bytes processed", rdlen)
End While


'fout.Seek(0, SeekOrigin.Begin)
'Dim returnValue As String
'returnValue = New StreamReader(fout).ReadToEnd()

encStream.Close()
fout.Close()
fin.Close()

End Sub

'文件解密

Public Sub DecryptData(ByVal inName As String, ByVal outName As String, _
Optional ByVal rijnKey() As Byte = Nothing, _
Optional ByVal rijnIV() As Byte = Nothing)

If rijnKey Is Nothing Then
rijnKey = cryKey

End If

If rijnIV Is Nothing Then
rijnIV = cryIV

End If

ReDim Preserve rijnKey(31)
ReDim Preserve rijnIV(15)

'Create the file streams to handle the input and output files.
Dim fin As New FileStream(inName, FileMode.Open, FileAccess.Read)
Dim fout As New FileStream(outName, FileMode.OpenOrCreate, _
FileAccess.ReadWrite)
fout.SetLength(0)

'Create variables to help with read and write.
Dim bin(1024) As Byte 'This is intermediate storage for the encryption.
Dim rdlen As Long = 0 'This is the total number of bytes written.
Dim totlen As Long = fin.Length 'Total length of the input file.
Dim len As Integer 'This is the number of bytes to be written at a time.
'Creates the default implementation, which is RijndaelManaged.
Dim rijn As SymmetricAlgorithm = SymmetricAlgorithm.Create()
Dim encStream As New CryptoStream(fout, _
rijn.CreateDecryptor(rijnKey, rijnIV), CryptoStreamMode.Write)

' Console.WriteLine("Encrypting...")

'Read from the input file, then encrypt and write to the output file.
While rdlen < totlen
len = fin.Read(bin, 0, 1024)
encStream.Write(bin, 0, len)
rdlen = Convert.ToInt32(rdlen + len)
' Console.WriteLine("{0} bytes processed", rdlen)

End While

encStream.Close()
fout.Close()
fin.Close()

End Sub
'文件解密

Public Function DecryptData(ByVal inName As String, _
Optional ByVal rijnKey() As Byte = Nothing, _
Optional ByVal rijnIV() As Byte = Nothing) As String

If rijnKey Is Nothing Then
rijnKey = cryKey

End If

If rijnIV Is Nothing Then
rijnIV = cryIV

End If

ReDim Preserve rijnKey(31)
ReDim Preserve rijnIV(15)

'Create the file streams to handle the input and output files.
Dim fin As New FileStream(inName, FileMode.Open, FileAccess.Read)
' Dim fout As New FileStream(outName, FileMode.OpenOrCreate, _
' FileAccess.ReadWrite)
'存储流,
Dim outStream As New MemoryStream() '(arrInByte, True) '(arrInByte, True)


'Create variables to help with read and write.
Dim bin(1024) As Byte 'This is intermediate storage for the encryption.
Dim rdlen As Long = 0 'This is the total number of bytes written.
Dim totlen As Long = fin.Length 'Total length of the input file.
Dim len As Integer 'This is the number of bytes to be written at a time.
'Creates the default implementation, which is RijndaelManaged.
While rdlen < totlen
len = fin.Read(bin, 0, 1024)
outStream.Write(bin, 0, len)
rdlen = Convert.ToInt32(rdlen + len)
' Console.WriteLine("{0} bytes processed", rdlen)

End While

outStream.Seek(0, SeekOrigin.Begin)

Dim rijn As SymmetricAlgorithm = SymmetricAlgorithm.Create()
Dim encStream As New CryptoStream(outStream, _
rijn.CreateDecryptor(rijnKey, rijnIV), CryptoStreamMode.Read)

' Console.WriteLine("Encrypting...")

'Read from the input file, then encrypt and write to the output file.


Dim returnValue As String
returnValue = New StreamReader(encStream, New System.Text.UnicodeEncoding()).ReadToEnd()


encStream.Close()
outStream.Close()
fin.Close()
Return returnValue

End Function





'加密
'in: inText 待加密原始文本
'in: rijnKey 32位密钥
'in: rijnIV 16位初始化向量

'out: return 加密后的文本(为空则加密失败)

Public Function Crypt(ByVal inText As String, _
Optional ByVal rijnKey() As Byte = Nothing, _
Optional ByVal rijnIV() As Byte = Nothing) As String



'Create the file streams to handle the input and output files.
' Dim fin As New FileStream(inName, FileMode.Open, FileAccess.Read)
Dim arrInByte As Byte() = (New System.Text.UnicodeEncoding()).GetBytes(inText)

Dim len As Long = arrInByte.Length

If (len Mod 32) > 0 Then
Dim oldlen As Long = len

len = oldlen + 32 - oldlen Mod 32

ReDim Preserve arrInByte(len - 1)

End If

If rijnKey Is Nothing Then
rijnKey = cryKey

End If
If rijnIV Is Nothing Then
rijnIV = cryIV

End If

ReDim Preserve rijnKey(31)

ReDim Preserve rijnIV(15)


Dim outStream As New MemoryStream() '(arrInByte, True) '(arrInByte, True)

Dim rij As SymmetricAlgorithm = SymmetricAlgorithm.Create()

Dim encStream As New CryptoStream(outStream, _
rij.CreateEncryptor(rijnKey, rijnIV), _
CryptoStreamMode.Write)

encStream.Write(arrInByte, 0, len)
outStream.Seek(0, SeekOrigin.Begin)

Dim returnValue As String
returnValue = New StreamReader(outStream, New System.Text.UnicodeEncoding()).ReadToEnd()

encStream.Close()
outStream.Close()

Return returnValue

End Function

'--------------------------------------------------------------------------------------------------------
'解密

'in: inText 待解密密文
'in: rijnKey 32位解密密钥(须跟加密时的相同)
'in: rijnIV 16位解密初始化向量(须跟加密时的相同)

'out: return 解密后的文本(为空则解密失败)
'解密 过程:把密文换成字节写到内存流,再跟据rijnKey和rijnIV创建解密流
'从解密流中读取所有的数据
'--------------------------------------------------------------------------------------------------------

Public Function Decrypt(ByVal inText As String, _
Optional ByVal rijnKey() As Byte = Nothing, _
Optional ByVal rijnIV() As Byte = Nothing) As String



'密文转换成字节

Dim arrInByte As Byte() = (New System.Text.UnicodeEncoding()).GetBytes(inText)

'存储流,
Dim outStream As New MemoryStream() '(arrInByte, True) '(arrInByte, True)

Dim len As Long = arrInByte.Length
If rijnKey Is Nothing Then
rijnKey = cryKey

End If

If rijnIV Is Nothing Then
rijnIV = cryIV

End If

ReDim Preserve rijnKey(31)

ReDim Preserve rijnIV(15)


Dim rij As SymmetricAlgorithm = SymmetricAlgorithm.Create()

outStream.Write(arrInByte, 0, len)

outStream.Seek(0, SeekOrigin.Begin)

Dim encStream As New CryptoStream(outStream, _
rij.CreateDecryptor(rijnKey, rijnIV), _
CryptoStreamMode.Read)

Dim returnValue As String
returnValue = New StreamReader(encStream, New System.Text.UnicodeEncoding()).ReadToEnd()


encStream.Close()
outStream.Close()

Return returnValue

End Function
End Class





' 加密
'http://community.csdn.net/Expert/topic/3199/3199494.xml?temp=.982464
Public Shared Function EncryptText(ByVal strText As String) As String
Return Encrypt(strText, "&%#@?./)")
End Function

'解密
Public Shared Function DecryptText(ByVal strText As String) As String
Return Decrypt(strText, "&%#@?./)")
End Function

'加密函数
Private Shared Function Encrypt(ByVal strText As String, ByVal strEncrKey As String) As String
Dim byKey() As Byte = {}
Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
Try
'byKey = System.Text.Encoding.UTF8.GetBytes(Left(strEncrKey, 8))
byKey = System.Text.Encoding.UTF8.GetBytes(strEncrKey.Substring(0, 8))
Dim des As New System.Security.Cryptography.DESCryptoServiceProvider
Dim inputByteArray() As Byte = System.Text.Encoding.UTF8.GetBytes(strText)
Dim ms As New MemoryStream
Dim cs As New CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write)
cs.Write(inputByteArray, 0, inputByteArray.Length)
cs.FlushFinalBlock()
Return Convert.ToBase64String(ms.ToArray())
Catch ex As Exception
Return ex.Message
End Try
End Function

'解密函数
Private Shared Function Decrypt(ByVal strText As String, ByVal sDecrKey As String) As String
Dim byKey() As Byte = {}
Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
Dim inputByteArray(strText.Length) As Byte
Try
'byKey = System.Text.Encoding.UTF8.GetBytes(Left(sDecrKey, 8))
byKey = System.Text.Encoding.UTF8.GetBytes(sDecrKey.Substring(0, 8))

Dim des As New DESCryptoServiceProvider
inputByteArray = Convert.FromBase64String(strText)
Dim ms As New MemoryStream
Dim cs As New CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write)
cs.Write(inputByteArray, 0, inputByteArray.Length)
cs.FlushFinalBlock()
Dim encoding As System.Text.Encoding = System.Text.Encoding.UTF8
Return encoding.GetString(ms.ToArray())
Catch ex As Exception
Return ex.Message
End Try
End Function





  相关文章:
.NET技术
ASP技术
PHP技术
JSP技术
.NET技术
服务器技术
数据库技术
其它类
工具软件
办公软件
本类阅读TOP10
 
关于我们   |   服务声明   |   使用帮助   |   广告合作   |   网站地图   |   友情链接   |   加盟合作   |   联系我们
Copyright © 2006 cnitrc.com Inc. All Rights Reserved. 浙ICP备05074295号
中国IT人才网 版权所有 网络实名:中国IT人才
未经书面授权严禁转载和复制本站的任何招聘信息和文章