diff options
Diffstat (limited to 'nacl/crypto_scalarmult/curve25519/athlon/base.c')
-rw-r--r-- | nacl/crypto_scalarmult/curve25519/athlon/base.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nacl/crypto_scalarmult/curve25519/athlon/base.c b/nacl/crypto_scalarmult/curve25519/athlon/base.c new file mode 100644 index 00000000..dde929ec --- /dev/null +++ b/nacl/crypto_scalarmult/curve25519/athlon/base.c | |||
@@ -0,0 +1,8 @@ | |||
1 | #include "crypto_scalarmult.h" | ||
2 | |||
3 | static char basepoint[32] = {9}; | ||
4 | |||
5 | int crypto_scalarmult_base(unsigned char *q,const unsigned char *n) | ||
6 | { | ||
7 | return crypto_scalarmult(q,n,basepoint); | ||
8 | } | ||