diff options
Diffstat (limited to 'src/crypto/shen_ed25519_ref/ref10CommentedCombined/scrap.txt')
-rw-r--r-- | src/crypto/shen_ed25519_ref/ref10CommentedCombined/scrap.txt | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/crypto/shen_ed25519_ref/ref10CommentedCombined/scrap.txt b/src/crypto/shen_ed25519_ref/ref10CommentedCombined/scrap.txt deleted file mode 100644 index 9a02605db..000000000 --- a/src/crypto/shen_ed25519_ref/ref10CommentedCombined/scrap.txt +++ /dev/null @@ -1,53 +0,0 @@ -#include "ge.h" - -/* -r = p + q -*/ - -void ge_add(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q) -{ - fe t0; - - - - - - - - - - - - - - - - - - - - - -fe_add(r->X,p->Y,p->X); - -fe_sub(r->Y,p->Y,p->X); - -fe_mul(r->Z,r->X,q->YplusX); - -fe_mul(r->Y,r->Y,q->YminusX); - -fe_mul(r->T,q->T2d,p->T); - -fe_mul(r->X,p->Z,q->Z); - -fe_add(t0,r->X,r->X); - -fe_sub(r->X,r->Z,r->Y); - -fe_add(r->Y,r->Z,r->Y); - -fe_add(r->Z,t0,r->T); - -fe_sub(r->T,t0,r->T); - -} |