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