我正在尝试解密一些文字。 我可以解密文件中的文本,但是当我复制该文件的内容并将其直接放在字符串中时,它不起作用,因为字节数组略有不同。
如何从字符串中获取字节数组,该字符串与从包含该字符串的文件读取时的字节数组相同?
这是我的代码:
$privateKeyFile = [System.IO.FileInfo]'D:\Avanade\CBA\Scripts\Encryption\Keys\cba.private.xml'
$privateKey = [System.IO.File]::OpenText($($privateKeyFile.FullName)).ReadToEnd()
$rsaProvider = New-Object System.Security.Cryptography.RSACryptoServiceProvider
$rsaProvider.FromXmlString($privateKey)
$encryptedData = 'ꨢﻥ睚紫震እ�풽꞊偓䷨頽ױ㻮앚튛堏焞娌젣래核儝쪅元㝂㢚覰齉c㑥㰺ᨅ㵉ァ镮邹꽋荺眢ꢈ쑷絓�ꮹ栊ハ垅懻惜䡠덟蓩瘫㙉ਧ騰י聗�၁틽ᮿ싓㈧ハ腰瑦ꊕ媘겻辖庖甏ܫ桑敘옐餈꿎請쌝⢸蒺銟ᩅ캼Շ疑ꊽ�䐼ꀑ醾耣咞䏎帾힆纄㎡㨇괎ꆠ䵢싐쇢绽굈ữ禘'
$encryptedDataAsByteArray1 = [System.Text.Encoding]::UniCode.GetBytes($encryptedData) #this byte array does NOT work
$FileToDecrypt = [System.IO.FileInfo]'D:\Avanade\CBA\Scripts\Encryption\d.txt.encrypted' #this has the same text as $encryptedData
$encryptedFile = [System.IO.File]::OpenRead($($FileToDecrypt.FullName))
$encryptedDataAsByteArray = New-Object System.Byte[] $encryptedFile.Length #This byte array works
$encryptedFile.Read($encryptedDataAsByteArray, 0, $encryptedFile.Length)
$encryptedFile.Close()
for ($i = 0; $i -lt $encryptedDataAsByteArray1.Count; $i++)
{
if ($encryptedDataAsByteArray1[$i] -ne $encryptedDataAsByteArray[$i])
{
Write-Host "Byte $i is not the same"
Write-Host "$($encryptedDataAsByteArray1[$i]) and $($encryptedDataAsByteArray[$i])"
}
}
$decryptedDataAsByteArray = $rsaProvider.Decrypt($encryptedDataAsByteArray, $false)
<#
Comparison of the two byte arrays:
Byte 12 is not the same
253 and 47
Byte 13 is not the same
255 and 223
Byte 92 is not the same
253 and 179
Byte 93 is not the same
255 and 223
Byte 132 is not the same
253 and 127
Byte 133 is not the same
255 and 223
Byte 204 is not the same
253 and 67
Byte 205 is not the same
#>
答案 0 :(得分:0)
对文件应用base 64编码,例如使用诸如openssl
命令行之类的实用程序。然后使用剪贴板将其复制到字符串中。最后,只需在应用程序中对其进行解码即可。
openssl base64 -in test.bin
结果:
VGhlIHF1aWNrIGJyb3duIGZveCB3YXMganVtcGVkIGJ5IHRoZSBzbGVhenkgZG9n
Lg==
将其复制到字符串中的问题是您会遇到字符编码问题。加密的字节可以包含任何值,包括控制字符和其他不可打印的字符。那些不会好好复制的。
以下是encode/decode using powershell的方法。请注意,如果您(已经)处理字节,则不需要执行字符(UTF-8)编码/解码。