summaryrefslogtreecommitdiff
path: root/src/encryption.h
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-01-11 19:39:53 -0600
committer@syxhe <https://t.me/syxhe>2025-01-11 19:39:53 -0600
commit0c19d693bfe1dd3071c71d9d95f68c0db5cc75d0 (patch)
treeb6dc25ba074b5d4bd9e4dd5babc6ae8ea56169df /src/encryption.h
parentd8e03b1a1d929f6afeac72d475183d0218656b48 (diff)
Fix genpassword function, delete buggy (v)asprintf implementation(s)
Diffstat (limited to 'src/encryption.h')
-rw-r--r--src/encryption.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encryption.h b/src/encryption.h
index 2c8f976..01aa704 100644
--- a/src/encryption.h
+++ b/src/encryption.h
@@ -4,7 +4,7 @@
4// Determines whether any function that calls libsodium functions also checks to make sure libsodium is actually initialized. May 4// Determines whether any function that calls libsodium functions also checks to make sure libsodium is actually initialized. May
5// cause unexpected issues with early exiting due to libsodium failing to initialize properly. It's recommended that you just 5// cause unexpected issues with early exiting due to libsodium failing to initialize properly. It's recommended that you just
6// manually run `sodium_init()` in some main or init function of your own so that you can deal with a potential error yourself 6// manually run `sodium_init()` in some main or init function of your own so that you can deal with a potential error yourself
7#define ___VXGG___ALWAYS_CHECK_LIBSODIUM___ 1 7#define ___VXGG___ALWAYS_CHECK_LIBSODIUM___ 0
8 8
9#if defined ___VXGG___ALWAYS_CHECK_LIBSODIUM___ && ___VXGG___ALWAYS_CHECK_LIBSODIUM___ > 0 9#if defined ___VXGG___ALWAYS_CHECK_LIBSODIUM___ && ___VXGG___ALWAYS_CHECK_LIBSODIUM___ > 0
10 10