From d0e84777aba6632283fc0789c810f51cc8fd78d3 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 5 Jun 2013 21:54:52 -0700 Subject: [PATCH] Add missing SODIUM_EXPORT in crypto_stream.h --- src/libsodium/include/sodium/crypto_stream.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libsodium/include/sodium/crypto_stream.h b/src/libsodium/include/sodium/crypto_stream.h index be9c3ee0..e16aef35 100644 --- a/src/libsodium/include/sodium/crypto_stream.h +++ b/src/libsodium/include/sodium/crypto_stream.h @@ -19,12 +19,15 @@ extern "C" { #endif #define crypto_stream_KEYBYTES crypto_stream_xsalsa20_KEYBYTES +SODIUM_EXPORT size_t crypto_stream_keybytes(void); #define crypto_stream_NONCEBYTES crypto_stream_xsalsa20_NONCEBYTES +SODIUM_EXPORT size_t crypto_stream_noncebytes(void); #define crypto_stream_PRIMITIVE "xsalsa20" +SODIUM_EXPORT const char *crypto_stream_primitive(void); SODIUM_EXPORT