You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1.I have used below code for generation of encrypted text in PDF
var key = CryptoJS.enc.Latin1.parse('0123456789abcdef');
var iv = CryptoJS.enc.Latin1.parse('fedcba9876543210');
var message = field;
var padMsg = padString(message);
var encrypted = CryptoJS.AES.encrypt(padMsg, key, {iv: iv, padding:
CryptoJS.pad.NoPadding, mode: CryptoJS.mode.CBC});
app.alert(encrypted).
2. Issue with above code is; Its working properly with Adobe Reader(some
version) and acrobat whereas with Adobe Reader DC and some other reader version
its not working as expected, Its very inconsistent, this is returning [object
Object].
3. I have tried other way to solve problem but its creating same issue.
What is the expected output? What do you see instead?
- Expected output is encrypted text whereas with returning [object Object] in
Adobe Reader DC and some other reader version also, Its very inconsistent.
What version of the product are you using? On what operating system?
- Latest version; Window 7 OS
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 13 Jun 2015 at 7:01
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 13 Jun 2015 at 7:01The text was updated successfully, but these errors were encountered: