Add libsodium source

This commit is contained in:
Mikhail Thompson
2024-06-27 15:00:43 +03:00
parent 7f4e947cf5
commit 6bd505c313
566 changed files with 77692 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
#define TEST_NAME "sodium_version"
#include "cmptest.h"
int
main(void)
{
printf("%d\n", sodium_version_string() != NULL);
printf("%d\n", sodium_library_version_major() > 0);
printf("%d\n", sodium_library_version_minor() >= 0);
#ifdef SODIUM_LIBRARY_MINIMAL
assert(sodium_library_minimal() == 1);
#else
assert(sodium_library_minimal() == 0);
#endif
return 0;
}