Hey,
I need to select two independent generators from the curve.
How can I select them? If I use the generator function from ecp I always get the same points.
I this maybe e bug or i miss an initialisation?
This is the code i used.
let g = ctx.ECP.generator(); const g_Bytes = []; g.toBytes(g_Bytes, true);
For the second one i used:
let u = ctx.ECP.generator(); const u_Bytes = []; u.toBytes(u_Bytes, true);