diff --git a/demo/example.js b/demo/example.js index 99363d5d..db1d572e 100644 --- a/demo/example.js +++ b/demo/example.js @@ -64,7 +64,7 @@ function doEncrypt() { mode:v.mode, ts:parseInt(v.tag), ks:parseInt(v.keysize) }; - if (!v.freshiv || !usedIvs[v.iv]) { iv:v.iv; } + if (!v.freshiv || !usedIvs[v.iv]) { p.iv = v.iv; } if (!v.freshsalt || !usedSalts[v.salt]) { p.salt = v.salt; } ct = sjcl.encrypt(password || key, plaintext, p, rp).replace(/,/g,",\n");