Home | History | Annotate | Download | only in benchmarks

Lines Matching full:arcfour

1343 // prng4.js - uses Arcfour as a PRNG
1345 function Arcfour() {
1351 // Initialize arcfour context from key, an array of ints, each from [0..255]
1377 Arcfour.prototype.init = ARC4init;
1378 Arcfour.prototype.next = ARC4next;
1382 return new Arcfour();