summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-27 09:30:45 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-27 09:30:45 -0700
commit89f57124b269957c5b8ef53dc5bc4bb720deaf96 (patch)
tree37e3d6609eeb069a3c486c2fe64c29553a254017
parent65823332d4db44105a3bddf3fc76b19084d11334 (diff)
downloadinfinitytier-89f57124b269957c5b8ef53dc5bc4bb720deaf96.tar.gz
infinitytier-89f57124b269957c5b8ef53dc5bc4bb720deaf96.zip
Never mind, only unused on some builds so leave them there.
-rw-r--r--node/C25519.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/node/C25519.cpp b/node/C25519.cpp
index 965c678c..be5f148d 100644
--- a/node/C25519.cpp
+++ b/node/C25519.cpp
@@ -765,15 +765,12 @@ void sc25519_from64bytes(sc25519 *r, const unsigned char x[64])
barrett_reduce(r, t);
}
-/*
void sc25519_to32bytes(unsigned char r[32], const sc25519 *x)
{
int i;
for(i=0;i<32;i++) r[i] = x->v[i];
}
-*/
-/*
void sc25519_add(sc25519 *r, const sc25519 *x, const sc25519 *y)
{
int i, carry;
@@ -786,9 +783,7 @@ void sc25519_add(sc25519 *r, const sc25519 *x, const sc25519 *y)
}
reduce_add_sub(r);
}
-*/
-/*
void sc25519_mul(sc25519 *r, const sc25519 *x, const sc25519 *y)
{
int i,j,carry;
@@ -808,7 +803,6 @@ void sc25519_mul(sc25519 *r, const sc25519 *x, const sc25519 *y)
barrett_reduce(r, t);
}
-*/
void sc25519_window3(signed char r[85], const sc25519 *s)
{