vb.net - VB.net 中的密码学 - 解密文件比源文件大?

标签 vb.net encryption cryptography

您好,我一直在尝试使用 System.Security.Cryptography 来加密和解密文件,但它对我不起作用

这段代码

Private Sub EncryptFile(ByVal sInputFilename As String, ByVal sOutputFilename As String, ByVal sKey As String)
    Dim fsInput As New FileStream(sInputFilename, FileMode.Open, FileAccess.Read)
    Dim fsEncrypted As New FileStream(sOutputFilename, FileMode.Create, FileAccess.Write)
    Dim DES As New DESCryptoServiceProvider()
    DES.Key = ASCIIEncoding.ASCII.GetBytes(sKey)
    DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey)
    Dim desencrypt As ICryptoTransform = DES.CreateEncryptor()
    Dim cryptostream As New CryptoStream(fsEncrypted, desencrypt, CryptoStreamMode.Write)
    Dim bytearrayinput(fsInput.Length - 1) As Byte
    fsInput.Read(bytearrayinput, 0, bytearrayinput.Length)
    cryptostream.Write(bytearrayinput, 0, bytearrayinput.Length)
    cryptostream.Close()
End Sub

调用方式

EncryptFile(OpenFileDialog1.FileName, SaveFileDialog1.FileName, "12345678")[/CODE]

似乎工作正常,我得到了一个与源文件大小相同的文件

这里出了问题

这段代码

Private Sub DecryptFile(ByVal sInputFilename As String, ByVal sOutputFilename As String, ByVal sKey As String)
    Dim DES As New DESCryptoServiceProvider()
    DES.Key() = ASCIIEncoding.ASCII.GetBytes(sKey)
    DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey)
    Dim fsread As New FileStream(sInputFilename, FileMode.Open, FileAccess.Read)
    Dim desdecrypt As ICryptoTransform = DES.CreateDecryptor()
    Dim cryptostreamDecr As New CryptoStream(fsread, desdecrypt, CryptoStreamMode.Read)
    Dim fsDecrypted As New StreamWriter(sOutputFilename)
    fsDecrypted.Write(New StreamReader(cryptostreamDecr).ReadToEnd)
    fsDecrypted.Flush()
    fsDecrypted.Close()
End Sub

调用方式

DecryptFile(OpenFileDialog1.FileName, SaveFileDialog1.FileName, "12345678")[/CODE]

输出的文件几乎是加密源文件的 2 倍。

发生了什么事,我确信几周前它工作正常,而且我看不出有什么明显的问题。

请问有什么想法吗?

最佳答案

主要问题是 EncryptFile 使用字节数组读取数据,而 DecryptFile 使用流读取数据。 EncryptFile 和 DecryptFile 方法之间的唯一区别应该是您的 ICryptoTransform 分配。将公共(public)代码放在 1 个过程中会更容易:

Private Sub EncryptFile(ByVal sInputFilename As String, ByVal sOutputFilename As String, ByVal sKey As String)
    Crypto(sInputFilename, sOutputFilename, sKey, True)
End Sub

Private Sub DecryptFile(ByVal sInputFilename As String, ByVal sOutputFilename As String, ByVal sKey As String)
    Crypto(sInputFilename, sOutputFilename, sKey, False)
End Sub

Private Sub Crypto(ByVal sInputFileName As String, ByVal sOutputFileName As String, ByVal sKey As String, ByVal bEncrypt As Boolean)
    'Define the service provider
    Dim DES As New DESCryptoServiceProvider()
    DES.Key() = ASCIIEncoding.ASCII.GetBytes(sKey)
    DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey)


    'Read the input file into array
    Dim fsInput As New FileStream(sInputFileName, FileMode.Open, FileAccess.Read)
    Dim bytearrayinput(fsInput.Length - 1) As Byte
    fsInput.Read(bytearrayinput, 0, bytearrayinput.Length)


    'Define the crypto transformer
    Dim cryptoTransform As ICryptoTransform

    If bEncrypt Then
        cryptoTransform = DES.CreateEncryptor()
    Else
        cryptoTransform = DES.CreateDecryptor
    End If


    'Create the encrypting streams
    Dim fsEncrypted As New FileStream(sOutputFileName, FileMode.Create, FileAccess.Write)
    Dim cryptostream As New CryptoStream(fsEncrypted, cryptoTransform, CryptoStreamMode.Write)

    'Write the output file
    cryptostream.Write(bytearrayinput, 0, bytearrayinput.Length)
    cryptostream.Close()
End Sub

Crypto 过程与以前的 EncryptFile 几乎相同。不同之处在于我根据您是加密还是解密来更改 ICryptoTransform 分配。

关于vb.net - VB.net 中的密码学 - 解密文件比源文件大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11055013/

相关文章:

vb.net - 如何在 vb.net 中以编程方式设置文件夹共享

c# - C# 和 VB.NET 中的即时窗口行为差异

SQL 使用参数化 SQL 时, ","附近的语法不正确

php - 使用 PHP PDO 插入 mysql 数据库 AES_ENCRYPT

javax.crypto.BadPaddingException : unknown block type

VB.Net 线程

java - RC4加密java

security - 常用的 PKCS 标准 : PKCS#7, PKCS#10 和 PKCS#12 有什么用?

c++ - 使用 Crypto++ 从字符串导入私钥

php - 将 PHP mcrypt 与 Rijndael/AES 结合使用