We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e9eef8b + 7b56152 commit dc3dd98Copy full SHA for dc3dd98
src/abstract/tower.ts
@@ -540,9 +540,9 @@ export function tower12(opts: Tower12Opts): {
540
const Fp12: mod.IField<Fp12> & Fp12Utils = {
541
ORDER: Fp2.ORDER, // TODO: unused, but need to verify
542
isLE: Fp6.isLE,
543
- BITS: 2 * Fp2.BITS,
544
- BYTES: 2 * Fp2.BYTES,
545
- MASK: bitMask(2 * Fp2.BITS),
+ BITS: 2 * Fp6.BITS,
+ BYTES: 2 * Fp6.BYTES,
+ MASK: bitMask(2 * Fp6.BITS),
546
ZERO: { c0: Fp6.ZERO, c1: Fp6.ZERO },
547
ONE: { c0: Fp6.ONE, c1: Fp6.ZERO },
548
create: (num) => num,
0 commit comments