You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
268 B

  1. const mimcsponge = require("./mimcsponge.js");
  2. const nRounds = 220;
  3. let S = "[\n";
  4. const cts = mimcsponge.getConstants();
  5. for (let i=0; i<nRounds; i++) {
  6. S = S + cts[i].toString();
  7. if (i<nRounds-1) S = S + ",";
  8. S=S+"\n";
  9. }
  10. S = S + "]\n";
  11. console.log(S);