aboutsummaryrefslogtreecommitdiff
path: root/src/ext/ed25519/ref10/fe_pow22523.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/ed25519/ref10/fe_pow22523.c')
-rw-r--r--src/ext/ed25519/ref10/fe_pow22523.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ext/ed25519/ref10/fe_pow22523.c b/src/ext/ed25519/ref10/fe_pow22523.c
new file mode 100644
index 0000000000..56675a5902
--- /dev/null
+++ b/src/ext/ed25519/ref10/fe_pow22523.c
@@ -0,0 +1,13 @@
+#include "fe.h"
+
+void fe_pow22523(fe out,const fe z)
+{
+ fe t0;
+ fe t1;
+ fe t2;
+ int i;
+
+#include "pow22523.h"
+
+ return;
+}