明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

使用的DES對稱加密

[摘要]在網(wǎng)站使用Cookie或者存放數(shù)據(jù)到數(shù)據(jù)庫中的時候時常會用到加密解密,MD5非常好用,但是有的時候需要進(jìn)行逆運算。那么此時DES對稱加密就比較好用了。設(shè)定一個密鑰,然后對所有的數(shù)據(jù)進(jìn)行加密。代碼介紹...
在網(wǎng)站使用Cookie或者存放數(shù)據(jù)到數(shù)據(jù)庫中的時候時常會用到加密解密,MD5非常好用,但是有的時候需要進(jìn)行逆運算。那么此時DES對稱加密就比較好用了。設(shè)定一個密鑰,然后對所有的數(shù)據(jù)進(jìn)行加密。代碼介紹如下,事先聲明僅為小弟個人理解,請各位多多指教
Imports System
Imports System.IO
Imports System.Text
Imports System.Diagnostics
Imports System.Security.Cryptography
Imports System.Text.RegularExpressions

'使用標(biāo)準(zhǔn)DES對稱加密
Public Function EncryptDes(ByVal SourceStr As String) As String

'get encodekey string from web.config
Dim skey As String
skey = ConfigurationSettings.AppSettings("EnCodeKey")

'put the input string into the byte array
Dim des As DESCryptoServiceProvider = New DESCryptoServiceProvider()
Dim inputByteArray As Byte()
inputByteArray = Encoding.Default.GetBytes(SourceStr)

'set encrypt object and skey
des.Key = ASCIIEncoding.ASCII.GetBytes(skey)
des.IV = ASCIIEncoding.ASCII.GetBytes(skey)
Dim ms As MemoryStream = New MemoryStream()
Dim cs As CryptoStream = New CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write)
Dim sw As StreamWriter = New StreamWriter(cs)
sw.Write(SourceStr)
sw.Flush()
cs.FlushFinalBlock()
ms.Flush()
Return Convert.ToBase64String(ms.GetBuffer(), 0, ms.Length)

End Function

'使用標(biāo)準(zhǔn)DES對稱解密
Public Function DecryptDes(ByVal SourceStr As String) As String

'get encodekey string from web.config
Dim sKey As String
sKey = ConfigurationSettings.AppSettings("EnCodeKey")

'put the input string into the byte array
Dim des As DESCryptoServiceProvider = New DESCryptoServiceProvider()

des.Key = ASCIIEncoding.ASCII.GetBytes(sKey)
des.IV = ASCIIEncoding.ASCII.GetBytes(sKey)

Dim buffer As Byte() = Convert.FromBase64String(SourceStr)

Dim ms As MemoryStream = New MemoryStream(buffer)
Dim cs As CryptoStream = New CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Read)
Dim sr As StreamReader = New StreamReader(cs)
Return sr.ReadToEnd()

End Function




標(biāo)簽:運用的DES對稱加密