diff options
Diffstat (limited to 'plugin/auth_ed25519/ref10/fe_invert.c')
-rw-r--r-- | plugin/auth_ed25519/ref10/fe_invert.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugin/auth_ed25519/ref10/fe_invert.c b/plugin/auth_ed25519/ref10/fe_invert.c new file mode 100644 index 00000000..bcfdb8ff --- /dev/null +++ b/plugin/auth_ed25519/ref10/fe_invert.c @@ -0,0 +1,14 @@ +#include "fe.h" + +void fe_invert(fe out,const fe z) +{ + fe t0; + fe t1; + fe t2; + fe t3; + int i; + +#include "pow225521.h" + + return; +} |