文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

VB.NET中怎么实现字符串加密解密

2023-06-17 17:55

关注

这篇文章给大家介绍VB.NET中怎么实现字符串加密解密,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

VB.NET字符串加密解密的安全说明:

与 DES 相比,Rijndael(现在称为“高级加密标准”[AES])和“三重数据加密标准”(3DES) 算法提供的安全性更高,原因是破解它们所需的计算量更大。有关更多信息,请参见 DES 和 Rijndael。

创建加密包装器

将加密命名空间的导入语句添加到文件开头。

  1. Visual Basic  

  2. Imports System.
    Security.Cryptography 

创建用来封装加密和解密方法的类。

  1. Visual Basic  

  2. Public NotInheritable 
    Class Simple3Des  

  3. End Class 

添加用来存储 3DES 加密服务提供程序的私有字段。

  1. Visual Basic  

  2. Private TripleDes As New 
    TripleDESCryptoServiceProvider 

添加私有方法,该方法将从指定密钥的哈希创建指定长度的字节数组。

  1. Visual Basic  

  2. Private Function TruncateHash( _  

  3. ByVal key As String, _  

  4. ByVal length As Integer) _  

  5. As Byte()  

  6. Dim sha1 As New SHA1Crypto
    ServiceProvider  

  7. ' Hash the key.  

  8. Dim keyBytes() As Byte = _ 

  9. System.Text.Encoding.Unicode.
    GetBytes(key)  

  10. Dim hash() As Byte = sha1.
    ComputeHash(keyBytes)  

  11. ' Truncate or pad the hash.  

  12. ReDim Preserve hash(length - 1)  

  13. Return hash  

  14. End Function 

添加用来初始化 3DES 加密服务提供程序的构造函数。

key 参数控制 EncryptData 和 DecryptData 方法。

  1. Visual Basic  

  2. Sub New(ByVal key As String)  

  3. ' Initialize the crypto
     provider.  

  4. TripleDes.Key = TruncateHash
    (key, TripleDes.KeySize \ 8)  

  5. TripleDes.IV = TruncateHash
    ("", TripleDes.BlockSize \ 8)  

  6. End Sub 

添加VB.NET字符串加密解密之加密的公共方法。

  1. Visual Basic  

  2. Public Function EncryptData( _  

  3. ByVal plaintext As String) _  

  4. As String  

  5. ' Convert the plaintext 
    string to a byte array.  

  6. Dim plaintextBytes() As Byte = _ 

  7. System.Text.Encoding.Unicode.
    GetBytes(plaintext)  

  8. ' Create the stream.  

  9. Dim ms As New System.IO.MemoryStream  

  10. ' Create the encoder to 
    write to the stream.  

  11. Dim encStream As New CryptoStream(ms, _  

  12. TripleDes.CreateEncryptor(), _  

  13. System.Security.Cryptography.
    CryptoStreamMode.Write)  

  14. ' Use the crypto stream to write 
    the byte array to the stream.  

  15. encStream.Write(plaintextBytes, 0, 
    plaintextBytes.Length)  

  16. encStream.FlushFinalBlock()  

  17. ' Convert the encrypted stream 
    to a printable string.  

  18. Return Convert.ToBase64String
    (ms.ToArray)  

  19. End Function 

添加VB.NET字符串加密解密之解密的公共方法。

  1. Visual Basic  

  2. Public Function DecryptData( _  

  3. ByVal encryptedtext As String) _  

  4. As String  

  5. ' Convert the encrypted text 
    string to a byte array.  

  6. Dim encryptedBytes() As Byte = 
    Convert.FromBase64String(encryptedtext)  

  7. ' Create the stream.  

  8. Dim ms As New System.IO.MemoryStream  

  9. ' Create the decoder to write to the stream.  

  10. Dim decStream As New CryptoStream(ms, _  

  11. TripleDes.CreateDecryptor(), _  

  12. System.Security.Cryptography.
    CryptoStreamMode.Write)  

  13. ' Use the crypto stream to write 
    the byte array to the stream.  

  14. decStream.Write(encryptedBytes, 0, 
    encryptedBytes.Length)  

  15. decStream.FlushFinalBlock()  

  16. ' Convert the plaintext stream to a string.  

  17. Return System.Text.Encoding.Unicode.
    GetString(ms.ToArray)  

  18. End Function 

包装类现在可用来保护用户资产了。在本示例中,它用于在可公开访问的文本文件中安全地存储私有用户数据。

测试VB.NET字符串加密解密包装器

在其他类中添加一个方法,该方法将使用包装器的 EncryptData 方法为字符串加密,并将它写入用户的“我的文档”文件夹。

  1. Visual Basic  

  2. Sub TestEncoding()  

  3. Dim plainText As String = 
    InputBox("Enter the plain text:")  

  4. Dim password As String = 
    InputBox("Enter the password:")  

  5. Dim wrapper As New Simple3Des
    (password)  

  6. Dim cipherText As String = 
    wrapper.EncryptData(plainText)  

  7. MsgBox("The cipher text is: " & 
    cipherText)  

  8. My.Computer.FileSystem.WriteAllText( _  

  9. My.Computer.FileSystem.Special
    Directories.MyDocuments & _  

  10. "\cipherText.txt", cipherText, False)  

  11. End Sub 

添加一个方法,该方法将从用户的“我的文档”文件夹读取加密字符串,并使用包装器的 DecryptData 方法为字符串解密。

  1. Visual Basic  

  2. Sub TestDecoding()  

  3. Dim cipherText As String = 
    My.Computer.FileSystem.ReadAllText( _  

  4. My.Computer.FileSystem.Special
    Directories.MyDocuments & _  

  5. "\cipherText.txt")  

  6. Dim password As String = 
    InputBox("Enter the password:")  

  7. Dim wrapper As New Simple3Des
    (password)  

  8. ' DecryptData throws if the 
    wrong password is used.  

  9. Try  

  10. Dim plainText As String = 
    wrapper.DecryptData(cipherText)  

  11. MsgBox("The plain text is: " 
    & plainText)  

  12. Catch ex As System.Security.
    Cryptography.CryptographicException  

  13. MsgBox("The data could not be
     decrypted with the password.")  

  14. End Try  

  15. End Sub 

添加用于调用 TestEncoding 和 TestDecoding 方法的用户界面代码。

关于VB.NET中怎么实现字符串加密解密就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯