summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c')
-rw-r--r--external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c b/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c
deleted file mode 100644
index 8f4ec72a..00000000
--- a/external_libs/python/pyzmq-14.7.0/bundled/libsodium/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "api.h"
-
-int crypto_stream(
- unsigned char *out,
- unsigned long long outlen,
- const unsigned char *n,
- const unsigned char *k
- )
-{
- unsigned char d[crypto_stream_BEFORENMBYTES];
- crypto_stream_beforenm(d, k);
- crypto_stream_afternm(out, outlen, n, d);
- return 0;
-}
-
-int crypto_stream_xor(
- unsigned char *out,
- const unsigned char *in,
- unsigned long long inlen,
- const unsigned char *n,
- const unsigned char *k
- )
-{
- unsigned char d[crypto_stream_BEFORENMBYTES];
- crypto_stream_beforenm(d, k);
- crypto_stream_xor_afternm(out, in, inlen, n, d);
- return 0;
-}