geMul8 static method

void geMul8(
  1. GroupElementP1P1 r,
  2. GroupElementP2 t
)

Implementation

static void geMul8(GroupElementP1P1 r, GroupElementP2 t) {
  GroupElementP2 u = GroupElementP2();
  geP2Dbl(r, t);
  geP1P1ToP2(u, r);
  geP2Dbl(r, u);
  geP1P1ToP2(u, r);
  geP2Dbl(r, u);
}