Browse Source

turning off random iv works

Mike Hamburg 14 years ago
parent
commit
4abe395d16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      demo/example.js

+ 1 - 1
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");