How about just #include <sodium.h> to include everything you need?
This commit is contained in:
parent
4825914aa8
commit
83961aae3b
@ -1,5 +1,6 @@
|
||||
|
||||
SODIUM_EXPORT = \
|
||||
sodium.h \
|
||||
sodium/crypto_auth.h \
|
||||
sodium/crypto_auth_hmacsha256.h \
|
||||
sodium/crypto_auth_hmacsha512256.h \
|
||||
|
38
src/libsodium/include/sodium.h
Normal file
38
src/libsodium/include/sodium.h
Normal file
@ -0,0 +1,38 @@
|
||||
|
||||
#ifndef sodium_H
|
||||
#define sodium_H
|
||||
|
||||
#include <sodium/crypto_auth.h>
|
||||
#include <sodium/crypto_auth_hmacsha256.h>
|
||||
#include <sodium/crypto_auth_hmacsha512256.h>
|
||||
#include <sodium/crypto_box.h>
|
||||
#include <sodium/crypto_box_curve25519xsalsa20poly1305.h>
|
||||
#include <sodium/crypto_core_hsalsa20.h>
|
||||
#include <sodium/crypto_core_salsa20.h>
|
||||
#include <sodium/crypto_core_salsa2012.h>
|
||||
#include <sodium/crypto_core_salsa208.h>
|
||||
#include <sodium/crypto_hash.h>
|
||||
#include <sodium/crypto_hash_sha256.h>
|
||||
#include <sodium/crypto_hash_sha512.h>
|
||||
#include <sodium/crypto_hashblocks_sha256.h>
|
||||
#include <sodium/crypto_hashblocks_sha512.h>
|
||||
#include <sodium/crypto_onetimeauth.h>
|
||||
#include <sodium/crypto_onetimeauth_poly1305.h>
|
||||
#include <sodium/crypto_scalarmult_curve25519.h>
|
||||
#include <sodium/crypto_secretbox.h>
|
||||
#include <sodium/crypto_secretbox_xsalsa20poly1305.h>
|
||||
#include <sodium/crypto_sign.h>
|
||||
#include <sodium/crypto_sign_ed25519.h>
|
||||
#include <sodium/crypto_sign_edwards25519sha512batch.h>
|
||||
#include <sodium/crypto_stream.h>
|
||||
#include <sodium/crypto_stream_aes128ctr.h>
|
||||
#include <sodium/crypto_stream_salsa20.h>
|
||||
#include <sodium/crypto_stream_salsa2012.h>
|
||||
#include <sodium/crypto_stream_salsa208.h>
|
||||
#include <sodium/crypto_stream_xsalsa20.h>
|
||||
#include <sodium/crypto_verify_16.h>
|
||||
#include <sodium/crypto_verify_32.h>
|
||||
#include <sodium/randombytes.h>
|
||||
#include <sodium/version.h>
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user