summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c')
-rw-r--r--external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c b/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c
deleted file mode 100644
index 25d7397f..00000000
--- a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c
+++ /dev/null
@@ -1,34 +0,0 @@
-
-#include "crypto_scalarmult.h"
-
-size_t
-crypto_scalarmult_bytes(void)
-{
- return crypto_scalarmult_BYTES;
-}
-
-size_t
-crypto_scalarmult_scalarbytes(void)
-{
- return crypto_scalarmult_SCALARBYTES;
-}
-
-const char *
-crypto_scalarmult_primitive(void)
-{
- return crypto_scalarmult_PRIMITIVE;
-}
-
-int
-crypto_scalarmult_base(unsigned char *q, const unsigned char *n)
-{
- return crypto_scalarmult_curve25519_base(q, n);
-}
-
-int
-crypto_scalarmult(unsigned char *q, const unsigned char *n,
- const unsigned char *p)
-{
- return crypto_scalarmult_curve25519(q, n, p);
-}
-