summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c')
-rw-r--r--external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c b/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c
deleted file mode 100644
index ebc208a3..00000000
--- a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/box_curve25519xsalsa20poly1305.c
+++ /dev/null
@@ -1,38 +0,0 @@
-#include "api.h"
-#include "utils.h"
-
-int crypto_box(
- unsigned char *c,
- const unsigned char *m,unsigned long long mlen,
- const unsigned char *n,
- const unsigned char *pk,
- const unsigned char *sk
-)
-{
- unsigned char k[crypto_box_BEFORENMBYTES];
- int ret;
-
- crypto_box_beforenm(k,pk,sk);
- ret = crypto_box_afternm(c,m,mlen,n,k);
- sodium_memzero(k, sizeof k);
-
- return ret;
-}
-
-int crypto_box_open(
- unsigned char *m,
- const unsigned char *c,unsigned long long clen,
- const unsigned char *n,
- const unsigned char *pk,
- const unsigned char *sk
-)
-{
- unsigned char k[crypto_box_BEFORENMBYTES];
- int ret;
-
- crypto_box_beforenm(k,pk,sk);
- ret = crypto_box_open_afternm(m,c,clen,n,k);
- sodium_memzero(k, sizeof k);
-
- return ret;
-}