function cneg25519()

in src/ristretto255.js [382:388]


function cneg25519(h, f, b) {
  const negf = lowlevel.gf();

  neg25519(negf, f);
  lowlevel.set25519(h, f);
  cmov25519(h, negf, b);
}