Ver Fonte

turning off random iv works

Mike Hamburg há 14 anos atrás
pai
commit
4abe395d16
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      demo/example.js

+ 1 - 1
demo/example.js

@@ -64,7 +64,7 @@ function doEncrypt() {
         mode:v.mode,
         mode:v.mode,
         ts:parseInt(v.tag),
         ts:parseInt(v.tag),
         ks:parseInt(v.keysize) };
         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; }
   if (!v.freshsalt || !usedSalts[v.salt]) { p.salt = v.salt; }
   ct = sjcl.encrypt(password || key, plaintext, p, rp).replace(/,/g,",\n");
   ct = sjcl.encrypt(password || key, plaintext, p, rp).replace(/,/g,",\n");