We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a8c03 commit 0d45cffCopy full SHA for 0d45cff
src/common/crypto_25519_libsodium.cpp
@@ -5,7 +5,9 @@
5
6
#ifdef STEAMNETWORKINGSOCKETS_CRYPTO_25519_LIBSODIUM
7
8
-#include <sodium.h>
+#include <sodium/crypto_scalarmult_curve25519.h>
9
+#include <sodium/crypto_sign_ed25519.h>
10
+#include <sodium/utils.h>
11
12
CEC25519KeyBase::~CEC25519KeyBase()
13
{
src/common/crypto_libsodium.cpp
@@ -4,7 +4,12 @@
4
#include <tier0/dbg.h>
#include "tier0/memdbgoff.h"
+#include <sodium/core.h>
+#include <sodium/crypto_aead_aes256gcm.h>
+#include <sodium/crypto_auth_hmacsha256.h>
+#include <sodium/crypto_hash_sha256.h>
+#include <sodium/randombytes.h>
#include "tier0/memdbgon.h"
14
15
#ifdef STEAMNETWORKINGSOCKETS_CRYPTO_LIBSODIUM
0 commit comments