91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

VB.NET如何實現DES加密

發布時間:2021-12-02 11:28:28 來源:億速云 閱讀:391 作者:小新 欄目:編程語言

這篇文章主要介紹了VB.NET如何實現DES加密,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

VB.NET DES加密代碼:

Imports System  Imports System.Collections.Generic  Imports System.Text  Imports System.IO  Imports System.Security  Imports System.Security.Cryptography   Namespace ZU14  NotInheritable Public Class DES  Private iv As String = "1234的yzo" Private key As String = "123在yzo"  '/ <summary> '/ DES加密偏移量,必須是>=8位長的字符串  '/ </summary>  Public Property IV() As String  Get  Return iv  End Get  Set  iv = value End Set  End Property  '/ <summary> '/ DES加密的私鑰,必須是8位長的字符串  '/ </summary>  Public Property Key() As String  Get  Return key  End Get  Set  key = value End Set  End Property   '/ <summary> '/ 對字符串進行DES加密  '/ </summary> '/ <param name="sourceString">待加密的字符串</param> '/ <returns>加密后的BASE64編碼的字符串</returns> Public Function Encrypt(sourceString As String) As String  Dim btKey As Byte() = Encoding.Default.GetBytes(key)  Dim btIV As Byte() = Encoding.Default.GetBytes(iv)  Dim des As New DESCryptoServiceProvider()  Dim ms As New MemoryStream()  Try  Dim inData As Byte() = Encoding.Default.GetBytes(sourceString)  Try  Dim cs As New CryptoStream(ms, des.CreateEncryptor(btKey, btIV), CryptoStreamMode.Write)  Try  cs.Write(inData, 0, inData.Length)  cs.FlushFinalBlock()  Finally  cs.Dispose()  End Try   Return Convert.ToBase64String(ms.ToArray())  Catch  End Try  Finally  ms.Dispose()  End Try  End Function 'Encrypt   '/ <summary> '/ 對DES加密后的字符串進行解密  '/ </summary> '/ <param name="encryptedString">待解密的字符串</param> '/ <returns>解密后的字符串</returns> Public Function Decrypt(encryptedString As String) As String  Dim btKey As Byte() = Encoding.Default.GetBytes(key)  Dim btIV As Byte() = Encoding.Default.GetBytes(iv)  Dim des As New DESCryptoServiceProvider()   Dim ms As New MemoryStream()  Try  Dim inData As Byte() = Convert.FromBase64String(encryptedString)  Try  Dim cs As New CryptoStream(ms, des.CreateDecryptor(btKey, btIV), CryptoStreamMode.Write)  Try  cs.Write(inData, 0, inData.Length)  cs.FlushFinalBlock()  Finally  cs.Dispose()  End Try   Return Encoding.Default.GetString(ms.ToArray())  Catch  End Try  Finally  ms.Dispose()  End Try  End Function 'Decrypt   '/ <summary> '/ 對文件內容進行DES加密  '/ </summary> '/ <param name="sourceFile">待加密的文件絕對路徑</param> '/ <param name="destFile">加密后的文件保存的絕對路徑</param> Overloads Public Sub EncryptFile(sourceFile As String, destFile As String)  If Not File.Exists(sourceFile) Then  Throw New FileNotFoundException("指定的文件路徑不存在!", sourceFile)  End If  Dim btKey As Byte() = Encoding.Default.GetBytes(key)  Dim btIV As Byte() = Encoding.Default.GetBytes(iv)  Dim des As New DESCryptoServiceProvider()  Dim btFile As Byte() = File.ReadAllBytes(sourceFile)   Dim fs As New FileStream(destFile, FileMode.Create, FileAccess.Write)  Try  Try  Dim cs As New CryptoStream(fs, des.CreateEncryptor(btKey, btIV), CryptoStreamMode.Write)  Try  cs.Write(btFile, 0, btFile.Length)  cs.FlushFinalBlock()  Finally  cs.Dispose()  End Try  Catch  Finally  fs.Close()  End Try  Finally  fs.Dispose()  End Try  End Sub 'EncryptFile   '/ <summary> '/ 對文件內容進行DES加密,加密后覆蓋掉原來的文件  '/ </summary> '/ <param name="sourceFile">待加密的文件的絕對路徑</param> Overloads Public Sub EncryptFile(sourceFile As String)  EncryptFile(sourceFile, sourceFile)  End Sub 'EncryptFile   '/ <summary> '/ 對文件內容進行DES解密  '/ </summary> '/ <param name="sourceFile">待解密的文件絕對路徑</param> '/ <param name="destFile">解密后的文件保存的絕對路徑</param> Overloads Public Sub DecryptFile(sourceFile As String, destFile As String)  If Not File.Exists(sourceFile) Then  Throw New FileNotFoundException("指定的文件路徑不存在!", sourceFile)  End If  Dim btKey As Byte() = Encoding.Default.GetBytes(key)  Dim btIV As Byte() = Encoding.Default.GetBytes(iv)  Dim des As New DESCryptoServiceProvider()  Dim btFile As Byte() = File.ReadAllBytes(sourceFile)   Dim fs As New FileStream(destFile, FileMode.Create, FileAccess.Write)  Try  Try  Dim cs As New CryptoStream(fs, des.CreateDecryptor(btKey, btIV), CryptoStreamMode.Write)  Try  cs.Write(btFile, 0, btFile.Length)  cs.FlushFinalBlock()  Finally  cs.Dispose()  End Try  Catch  Finally  fs.Close()  End Try  Finally  fs.Dispose()  End Try  End Sub 'DecryptFile   '/ <summary> '/ 對文件內容進行DES解密,加密后覆蓋掉原來的文件  '/ </summary> '/ <param name="sourceFile">待解密的文件的絕對路徑</param> Overloads Public Sub DecryptFile(sourceFile As String)  DecryptFile(sourceFile, sourceFile)  End Sub 'DecryptFile  End Class 'DES  End Namespace 'ZU14

VB.NET DES加密使用方法:

Dim des As New ZU14.DES()  des.IV = "abcd哈哈笑" des.Key = "必須八位"  Dim es As String = des.Encrypt("在")  Console.WriteLine(es)  Console.Write(des.Decrypt(es))   des.EncryptFile("d:\a.txt", "d:\b.txt")  des.DecryptFile("d:\b.txt")    Console.ReadKey(True)

感謝你能夠認真閱讀完這篇文章,希望小編分享的“VB.NET如何實現DES加密”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

福州市| 彰化市| 金阳县| 湖南省| 中超| 三都| 宁晋县| 闸北区| 临漳县| 沽源县| 遂宁市| 无棣县| 临沭县| 阳曲县| 开平市| 厦门市| 安龙县| 彰武县| 江北区| 乌兰察布市| 祥云县| 清苑县| 东阳市| 海丰县| 化州市| 留坝县| 尉犁县| 岳普湖县| 南阳市| 涪陵区| 临夏县| 葵青区| 平山县| 临泽县| 疏勒县| 壤塘县| 安顺市| 即墨市| 牡丹江市| 磴口县| 元阳县|