diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-25 15:11:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-25 15:11:34 -0400 |
commit | 1c5d680b3d6734e989a92deedbcf2bb46f31f7f9 (patch) | |
tree | 9095ef06917bd77ce7581560de56872ef8f8ead7 /src/ext/ed25519/ref10/fe_copy.c | |
parent | 50d15e06b32ce743ac4da532f29abb3781c4b990 (diff) | |
parent | 46cda485bce60894d3128dcd42831a8c6cc7bcb4 (diff) | |
download | tor-1c5d680b3d6734e989a92deedbcf2bb46f31f7f9.tar.gz tor-1c5d680b3d6734e989a92deedbcf2bb46f31f7f9.zip |
Merge branch 'ed25519_ref10_squashed'
Conflicts:
src/common/include.am
src/ext/README
Diffstat (limited to 'src/ext/ed25519/ref10/fe_copy.c')
-rw-r--r-- | src/ext/ed25519/ref10/fe_copy.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ext/ed25519/ref10/fe_copy.c b/src/ext/ed25519/ref10/fe_copy.c new file mode 100644 index 0000000000..9c5bf865a2 --- /dev/null +++ b/src/ext/ed25519/ref10/fe_copy.c @@ -0,0 +1,29 @@ +#include "fe.h" + +/* +h = f +*/ + +void fe_copy(fe h,const fe f) +{ + crypto_int32 f0 = f[0]; + crypto_int32 f1 = f[1]; + crypto_int32 f2 = f[2]; + crypto_int32 f3 = f[3]; + crypto_int32 f4 = f[4]; + crypto_int32 f5 = f[5]; + crypto_int32 f6 = f[6]; + crypto_int32 f7 = f[7]; + crypto_int32 f8 = f[8]; + crypto_int32 f9 = f[9]; + h[0] = f0; + h[1] = f1; + h[2] = f2; + h[3] = f3; + h[4] = f4; + h[5] = f5; + h[6] = f6; + h[7] = f7; + h[8] = f8; + h[9] = f9; +} |