summaryrefslogtreecommitdiff
path: root/libs/libaxolotl/src/curve25519/ed25519/fe_0.c
blob: ca25f00ec80102767b3d53086523958796bd4c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "fe.h"

/*
h = 0
*/

void fe_0(fe h)
{
  h[0] = 0;
  h[1] = 0;
  h[2] = 0;
  h[3] = 0;
  h[4] = 0;
  h[5] = 0;
  h[6] = 0;
  h[7] = 0;
  h[8] = 0;
  h[9] = 0;
}