aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/montgomery32_2e150m5_5limbs/fesquare.c
blob: e3345edfe808de6e9f1f76294f5a761070c8568c (plain)
1
2
3
4
5
/* WARNING: This file was copied from Specific/CurveParameters/montgomery32/fesquare.c.
 If you edit it here, changes will be erased the next time remake_curves.sh is run. */
static void fesquare(uint32_t *out, const uint32_t *in) {
  femul(out, in, in);
}