Closed karust closed 5 years ago
It panicked several times during parsing large corpus of PDF files in decryptString function in read.go, because there was no code for AES. Now it does not crash and you can see some text decrypted after x = string(s) line.
decryptString
read.go
x = string(s)
Looks good!
It panicked several times during parsing large corpus of PDF files in
decryptString
function inread.go
, because there was no code for AES. Now it does not crash and you can see some text decrypted afterx = string(s)
line.