Я пытаюсь расшифровать зашифрованный XML-файл и поместить его в поток, а затем загрузить в набор данных. Я могу сделать это, если я расшифрую файл и запишу его обратно в файл. Затем выполните метод Dataset.ReadXML. Однако, поэтому я не побеждаю цель шифрования, я хотел бы оставить его в памяти. Я вижу, что .ReadXML принимает system.io.stream в качестве параметра, но я просто не уверен, что это лучший способ построить его из метода расшифровки.
Вот код для загрузки файла XML в набор данных
'ds is the dataset
ds.ReadXmlSchema(m_TheSchemaPath)
ds.ReadXml(m_TheXMLDatasetPath, XmlReadMode.IgnoreSchema)
Вот код для расшифровки файла:
Sub DecryptFile(ByVal sInputFilename As String, _
ByVal sOutputFilename As String, _
ByVal sKey As String)
Dim DES As New DESCryptoServiceProvider()
'A 64-bit key and an IV are required for this provider.
'Set the secret key for the DES algorithm.
DES.Key() = ASCIIEncoding.ASCII.GetBytes(sKey)
'Set the initialization vector.
DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey)
'Create the file stream to read the encrypted file back.
Dim fsread As New FileStream(sInputFilename, FileMode.Open, FileAccess.Read)
'Create the DES decryptor from the DES instance.
Dim desdecrypt As ICryptoTransform = DES.CreateDecryptor()
'Create the crypto stream set to read and to do a DES decryption transform on incoming bytes.
Dim cryptostreamDecr As New CryptoStream(fsread, desdecrypt, CryptoStreamMode.Read)
'Print out the contents of the decrypted file.
Dim fsDecrypted As New StreamWriter(sOutputFilename)
fsDecrypted.Write(New StreamReader(cryptostreamDecr).ReadToEnd)
fsDecrypted.Flush()
fsDecrypted.Close()
End Sub