标签: vb.net encryption rijndael binaryreader
我有一个使用Rijndael加密方法加密的文件。我想在内存中解密,而不是将其写入磁盘。
所以我尝试使用BinaryReader来读取文件。但是如何使用BinaryReader并读取二进制文件以便我可以解密它。我尝试使用ReadString并且它会出现"Unable to read beyond the end of the stream."错误。
BinaryReader
"Unable to read beyond the end of the stream."
那么如何读取文件以便我可以在内存中使用Rijndael方法解密文件。