From 2e59f9740a29439df7c7a56cf0ae83dec3081d31 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 11 Aug 2014 13:49:21 -0400 Subject: initial import of debian version from mentors --- builds/.gitignore | 7 + builds/msvc/build/buildall.bat | 10 + builds/msvc/build/buildbase.bat | 69 ++ builds/msvc/properties/Common.props | 21 + builds/msvc/properties/DLL.props | 16 + builds/msvc/properties/Debug.props | 29 + builds/msvc/properties/DebugDEXE.props | 21 + builds/msvc/properties/DebugDLL.props | 20 + builds/msvc/properties/DebugLEXE.props | 20 + builds/msvc/properties/DebugLIB.props | 21 + builds/msvc/properties/DebugLTCG.props | 20 + builds/msvc/properties/DebugSEXE.props | 21 + builds/msvc/properties/EXE.props | 17 + builds/msvc/properties/LIB.props | 16 + builds/msvc/properties/LTCG.props | 13 + builds/msvc/properties/Link.props | 21 + builds/msvc/properties/Messages.props | 15 + builds/msvc/properties/Output.props | 30 + builds/msvc/properties/Release.props | 41 + builds/msvc/properties/ReleaseDEXE.props | 20 + builds/msvc/properties/ReleaseDLL.props | 19 + builds/msvc/properties/ReleaseLEXE.props | 20 + builds/msvc/properties/ReleaseLIB.props | 19 + builds/msvc/properties/ReleaseLTCG.props | 19 + builds/msvc/properties/ReleaseSEXE.props | 20 + builds/msvc/properties/Win32.props | 20 + builds/msvc/properties/x64.props | 23 + builds/msvc/resource.h | Bin 0 -> 814 bytes builds/msvc/resource.rc | Bin 0 -> 4616 bytes builds/msvc/version.h | 29 + builds/msvc/vs2010/libsodium.import.props | 52 + builds/msvc/vs2010/libsodium.import.xml | 17 + builds/msvc/vs2010/libsodium.sln | 79 ++ builds/msvc/vs2010/libsodium/libsodium.props | 43 + builds/msvc/vs2010/libsodium/libsodium.vcxproj | 365 +++++++ .../vs2010/libsodium/libsodium.vcxproj.filters | 1114 ++++++++++++++++++++ builds/msvc/vs2010/libsodium/libsodium.xml | 15 + builds/msvc/vs2010/test/test.props | 43 + builds/msvc/vs2010/test/test.runner.bat | 78 ++ builds/msvc/vs2010/test/test.vcxproj | 214 ++++ builds/msvc/vs2010/test/test.vcxproj.filters | 162 +++ builds/msvc/vs2012/libsodium.import.props | 52 + builds/msvc/vs2012/libsodium.import.xml | 17 + builds/msvc/vs2012/libsodium.sln | 79 ++ builds/msvc/vs2012/libsodium/libsodium.props | 43 + builds/msvc/vs2012/libsodium/libsodium.vcxproj | 365 +++++++ .../vs2012/libsodium/libsodium.vcxproj.filters | 1114 ++++++++++++++++++++ builds/msvc/vs2012/libsodium/libsodium.xml | 15 + builds/msvc/vs2012/test/test.props | 43 + builds/msvc/vs2012/test/test.runner.bat | 78 ++ builds/msvc/vs2012/test/test.vcxproj | 214 ++++ builds/msvc/vs2012/test/test.vcxproj.filters | 162 +++ builds/msvc/vs2013/libsodium.import.props | 52 + builds/msvc/vs2013/libsodium.import.xml | 17 + builds/msvc/vs2013/libsodium.sln | 81 ++ builds/msvc/vs2013/libsodium/libsodium.props | 43 + builds/msvc/vs2013/libsodium/libsodium.vcxproj | 365 +++++++ .../vs2013/libsodium/libsodium.vcxproj.filters | 1114 ++++++++++++++++++++ builds/msvc/vs2013/libsodium/libsodium.xml | 15 + builds/msvc/vs2013/test/test.props | 43 + builds/msvc/vs2013/test/test.runner.bat | 78 ++ builds/msvc/vs2013/test/test.vcxproj | 214 ++++ builds/msvc/vs2013/test/test.vcxproj.filters | 162 +++ 63 files changed, 7165 insertions(+) create mode 100644 builds/.gitignore create mode 100644 builds/msvc/build/buildall.bat create mode 100644 builds/msvc/build/buildbase.bat create mode 100644 builds/msvc/properties/Common.props create mode 100644 builds/msvc/properties/DLL.props create mode 100644 builds/msvc/properties/Debug.props create mode 100644 builds/msvc/properties/DebugDEXE.props create mode 100644 builds/msvc/properties/DebugDLL.props create mode 100644 builds/msvc/properties/DebugLEXE.props create mode 100644 builds/msvc/properties/DebugLIB.props create mode 100644 builds/msvc/properties/DebugLTCG.props create mode 100644 builds/msvc/properties/DebugSEXE.props create mode 100644 builds/msvc/properties/EXE.props create mode 100644 builds/msvc/properties/LIB.props create mode 100644 builds/msvc/properties/LTCG.props create mode 100644 builds/msvc/properties/Link.props create mode 100644 builds/msvc/properties/Messages.props create mode 100644 builds/msvc/properties/Output.props create mode 100644 builds/msvc/properties/Release.props create mode 100644 builds/msvc/properties/ReleaseDEXE.props create mode 100644 builds/msvc/properties/ReleaseDLL.props create mode 100644 builds/msvc/properties/ReleaseLEXE.props create mode 100644 builds/msvc/properties/ReleaseLIB.props create mode 100644 builds/msvc/properties/ReleaseLTCG.props create mode 100644 builds/msvc/properties/ReleaseSEXE.props create mode 100644 builds/msvc/properties/Win32.props create mode 100644 builds/msvc/properties/x64.props create mode 100644 builds/msvc/resource.h create mode 100644 builds/msvc/resource.rc create mode 100644 builds/msvc/version.h create mode 100644 builds/msvc/vs2010/libsodium.import.props create mode 100644 builds/msvc/vs2010/libsodium.import.xml create mode 100644 builds/msvc/vs2010/libsodium.sln create mode 100644 builds/msvc/vs2010/libsodium/libsodium.props create mode 100644 builds/msvc/vs2010/libsodium/libsodium.vcxproj create mode 100644 builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters create mode 100644 builds/msvc/vs2010/libsodium/libsodium.xml create mode 100644 builds/msvc/vs2010/test/test.props create mode 100644 builds/msvc/vs2010/test/test.runner.bat create mode 100644 builds/msvc/vs2010/test/test.vcxproj create mode 100644 builds/msvc/vs2010/test/test.vcxproj.filters create mode 100644 builds/msvc/vs2012/libsodium.import.props create mode 100644 builds/msvc/vs2012/libsodium.import.xml create mode 100644 builds/msvc/vs2012/libsodium.sln create mode 100644 builds/msvc/vs2012/libsodium/libsodium.props create mode 100644 builds/msvc/vs2012/libsodium/libsodium.vcxproj create mode 100644 builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters create mode 100644 builds/msvc/vs2012/libsodium/libsodium.xml create mode 100644 builds/msvc/vs2012/test/test.props create mode 100644 builds/msvc/vs2012/test/test.runner.bat create mode 100644 builds/msvc/vs2012/test/test.vcxproj create mode 100644 builds/msvc/vs2012/test/test.vcxproj.filters create mode 100644 builds/msvc/vs2013/libsodium.import.props create mode 100644 builds/msvc/vs2013/libsodium.import.xml create mode 100644 builds/msvc/vs2013/libsodium.sln create mode 100644 builds/msvc/vs2013/libsodium/libsodium.props create mode 100644 builds/msvc/vs2013/libsodium/libsodium.vcxproj create mode 100644 builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters create mode 100644 builds/msvc/vs2013/libsodium/libsodium.xml create mode 100644 builds/msvc/vs2013/test/test.props create mode 100644 builds/msvc/vs2013/test/test.runner.bat create mode 100644 builds/msvc/vs2013/test/test.vcxproj create mode 100644 builds/msvc/vs2013/test/test.vcxproj.filters (limited to 'builds') diff --git a/builds/.gitignore b/builds/.gitignore new file mode 100644 index 0000000..878f1a3 --- /dev/null +++ b/builds/.gitignore @@ -0,0 +1,7 @@ +*.opensdf +*.suo +*.sdf +*.vcxproj.user +*.aps +*.log +!build \ No newline at end of file diff --git a/builds/msvc/build/buildall.bat b/builds/msvc/build/buildall.bat new file mode 100644 index 0000000..d6b0d5f --- /dev/null +++ b/builds/msvc/build/buildall.bat @@ -0,0 +1,10 @@ +@ECHO OFF + +CALL buildbase.bat ..\vs2013\libsodium.sln 12 +ECHO. +CALL buildbase.bat ..\vs2012\libsodium.sln 11 +ECHO. +CALL buildbase.bat ..\vs2010\libsodium.sln 10 +ECHO. + +PAUSE \ No newline at end of file diff --git a/builds/msvc/build/buildbase.bat b/builds/msvc/build/buildbase.bat new file mode 100644 index 0000000..45efdd5 --- /dev/null +++ b/builds/msvc/build/buildbase.bat @@ -0,0 +1,69 @@ +@ECHO OFF +REM Usage: [buildbase.bat ..\vs2013\mysolution.sln 12] + +SET solution=%1 +SET version=%2 +SET log=build_%version%.log +SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat +SET environment="%programfiles(x86)%\%tools%" +IF NOT EXIST %environment% SET environment="%programfiles%\%tools%" +IF NOT EXIST %environment% GOTO no_tools + +ECHO Building: %solution% + +CALL %environment% x86 > nul +ECHO Platform=x86 + +ECHO Configuration=DynDebug +msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %solution% > %log% +IF errorlevel 1 GOTO error +ECHO Configuration=DynRelease +msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=LtcgDebug +msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=LtcgRelease +msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=StaticDebug +msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=StaticRelease +msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %solution% >> %log% +IF errorlevel 1 GOTO error + +CALL %environment% x86_amd64 > nul +ECHO Platform=x64 + +ECHO Configuration=DynDebug +msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %solution% > %log% +IF errorlevel 1 GOTO error +ECHO Configuration=DynRelease +msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=LtcgDebug +msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=x64 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=LtcgRelease +msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=x64 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=StaticDebug +msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=x64 %solution% >> %log% +IF errorlevel 1 GOTO error +ECHO Configuration=StaticRelease +msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=x64 %solution% >> %log% +IF errorlevel 1 GOTO error + +ECHO Complete: %solution% +GOTO end + +:error +ECHO *** ERROR, build terminated early, see: %log% +GOTO end + +:no_tools +ECHO *** ERROR, build tools not found: %tools% + +:end + diff --git a/builds/msvc/properties/Common.props b/builds/msvc/properties/Common.props new file mode 100644 index 0000000..72588d6 --- /dev/null +++ b/builds/msvc/properties/Common.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Common Settings + Unicode + + + + + + + + + true + UNICODE;_UNICODE;%(PreprocessorDefinitions) + Level3 + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DLL.props b/builds/msvc/properties/DLL.props new file mode 100644 index 0000000..b5aa1f0 --- /dev/null +++ b/builds/msvc/properties/DLL.props @@ -0,0 +1,16 @@ + + + + + <_PropertySheetDisplayName>Dynamic Library + dynamic + .dll + + + + + _DLL;_WINDLL;%(PreprocessorDefinitions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Debug.props b/builds/msvc/properties/Debug.props new file mode 100644 index 0000000..6fa7419 --- /dev/null +++ b/builds/msvc/properties/Debug.props @@ -0,0 +1,29 @@ + + + + + + + + + <_PropertySheetDisplayName>Debug Settings + Debug + + + + + EnableFastChecks + ProgramDatabase + true + Disabled + _DEBUG;%(PreprocessorDefinitions) + + + _DEBUG;%(PreprocessorDefinitions) + + + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugDEXE.props b/builds/msvc/properties/DebugDEXE.props new file mode 100644 index 0000000..fe8b577 --- /dev/null +++ b/builds/msvc/properties/DebugDEXE.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Console Debug Dynamic + dynamic + + + + + + + + + + MultiThreadedDebugDLL + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugDLL.props b/builds/msvc/properties/DebugDLL.props new file mode 100644 index 0000000..a451d0b --- /dev/null +++ b/builds/msvc/properties/DebugDLL.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Dynamic Debug Library + + + + + + + + + + MultiThreadedDebugDLL + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLEXE.props b/builds/msvc/properties/DebugLEXE.props new file mode 100644 index 0000000..7fa92c0 --- /dev/null +++ b/builds/msvc/properties/DebugLEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Debug Link Time Code Generation + + + + + + + + + + + MultiThreadedDebug + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLIB.props b/builds/msvc/properties/DebugLIB.props new file mode 100644 index 0000000..c5f1012 --- /dev/null +++ b/builds/msvc/properties/DebugLIB.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Static Debug Library + + + + + + + + + + OldStyle + MultiThreadedDebug + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugLTCG.props b/builds/msvc/properties/DebugLTCG.props new file mode 100644 index 0000000..42b22ff --- /dev/null +++ b/builds/msvc/properties/DebugLTCG.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Static Debug Link Time Code Generation Library + + + + + + + + + + OldStyle + MultiThreadedDebug + + + + \ No newline at end of file diff --git a/builds/msvc/properties/DebugSEXE.props b/builds/msvc/properties/DebugSEXE.props new file mode 100644 index 0000000..2615ffc --- /dev/null +++ b/builds/msvc/properties/DebugSEXE.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Console Debug Static + static + + + + + + + + + + MultiThreadedDebug + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/EXE.props b/builds/msvc/properties/EXE.props new file mode 100644 index 0000000..3549064 --- /dev/null +++ b/builds/msvc/properties/EXE.props @@ -0,0 +1,17 @@ + + + + + <_PropertySheetDisplayName>Console Application + true + + + + + _CONSOLE;%(PreprocessorDefinitions) + + + Console + + + \ No newline at end of file diff --git a/builds/msvc/properties/LIB.props b/builds/msvc/properties/LIB.props new file mode 100644 index 0000000..3835777 --- /dev/null +++ b/builds/msvc/properties/LIB.props @@ -0,0 +1,16 @@ + + + + + <_PropertySheetDisplayName>Static Library + static + .lib + + + + + _LIB;%(PreprocessorDefinitions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/LTCG.props b/builds/msvc/properties/LTCG.props new file mode 100644 index 0000000..0229293 --- /dev/null +++ b/builds/msvc/properties/LTCG.props @@ -0,0 +1,13 @@ + + + + + <_PropertySheetDisplayName>Link Time Code Generation Library + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Link.props b/builds/msvc/properties/Link.props new file mode 100644 index 0000000..db15fbb --- /dev/null +++ b/builds/msvc/properties/Link.props @@ -0,0 +1,21 @@ + + + + + <_PropertySheetDisplayName>Link Time Code Generation Settings + ltcg + + + + + true + + + UseLinkTimeCodeGeneration + + + true + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Messages.props b/builds/msvc/properties/Messages.props new file mode 100644 index 0000000..06a1ab0 --- /dev/null +++ b/builds/msvc/properties/Messages.props @@ -0,0 +1,15 @@ + + + + + <_PropertySheetDisplayName>Build Messages + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Output.props b/builds/msvc/properties/Output.props new file mode 100644 index 0000000..492876c --- /dev/null +++ b/builds/msvc/properties/Output.props @@ -0,0 +1,30 @@ + + + + + <_PropertySheetDisplayName>Output Settings + + $(ProjectDir)..\..\ + $(ProjectDir)..\..\..\..\ + $(ProjectDir)..\..\..\..\..\ + $(ProjectDir)..\..\..\..\bin\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\ + $(ProjectDir)..\..\..\..\obj\$(TargetName)\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\ + $(OutDir) + $(TargetName) + $(TargetDir)$(TargetName)$(TargetExt) + + + + + $(OutDir)$(TargetName).lib + + + $(OutDir)$(TargetName).log + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Release.props b/builds/msvc/properties/Release.props new file mode 100644 index 0000000..1c5415b --- /dev/null +++ b/builds/msvc/properties/Release.props @@ -0,0 +1,41 @@ + + + + + + + + + <_PropertySheetDisplayName>Release Settings + Release + false + + + + + /Oy- %(AdditionalOptions) + + true + true + OnlyExplicitInline + false + MaxSpeed + NDEBUG;%(PreprocessorDefinitions) + + + NDEBUG;%(PreprocessorDefinitions) + + + true + + true + + + + + + StreamingSIMDExtensions2 + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseDEXE.props b/builds/msvc/properties/ReleaseDEXE.props new file mode 100644 index 0000000..b89b373 --- /dev/null +++ b/builds/msvc/properties/ReleaseDEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Dynamic + dynamic + + + + + + + + + + MultiThreadedDebugDLL + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseDLL.props b/builds/msvc/properties/ReleaseDLL.props new file mode 100644 index 0000000..2071b33 --- /dev/null +++ b/builds/msvc/properties/ReleaseDLL.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Dynamic Release Library + + + + + + + + + + MultiThreadedDLL + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLEXE.props b/builds/msvc/properties/ReleaseLEXE.props new file mode 100644 index 0000000..beb73ef --- /dev/null +++ b/builds/msvc/properties/ReleaseLEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Link Time Code Generation + + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLIB.props b/builds/msvc/properties/ReleaseLIB.props new file mode 100644 index 0000000..2b250d5 --- /dev/null +++ b/builds/msvc/properties/ReleaseLIB.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Static Release Library + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseLTCG.props b/builds/msvc/properties/ReleaseLTCG.props new file mode 100644 index 0000000..1814c6f --- /dev/null +++ b/builds/msvc/properties/ReleaseLTCG.props @@ -0,0 +1,19 @@ + + + + + <_PropertySheetDisplayName>Static Release Link Time Code Generation Library + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/ReleaseSEXE.props b/builds/msvc/properties/ReleaseSEXE.props new file mode 100644 index 0000000..2f5600a --- /dev/null +++ b/builds/msvc/properties/ReleaseSEXE.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>Console Release Static + static + + + + + + + + + + MultiThreaded + + + + \ No newline at end of file diff --git a/builds/msvc/properties/Win32.props b/builds/msvc/properties/Win32.props new file mode 100644 index 0000000..f7b1df6 --- /dev/null +++ b/builds/msvc/properties/Win32.props @@ -0,0 +1,20 @@ + + + + + <_PropertySheetDisplayName>x86 Settings + + + + + WIN32;_WIN32;%(PreprocessorDefinitions) + + + MachineX86 + + + /MACHINE:X86 %(AdditionalOptions) + + + + \ No newline at end of file diff --git a/builds/msvc/properties/x64.props b/builds/msvc/properties/x64.props new file mode 100644 index 0000000..0831f69 --- /dev/null +++ b/builds/msvc/properties/x64.props @@ -0,0 +1,23 @@ + + + + + <_PropertySheetDisplayName>x64 Settings + + + + + + WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions) + + + MachineX64 + + + /MACHINE:X64 %(AdditionalOptions) + + + + \ No newline at end of file diff --git a/builds/msvc/resource.h b/builds/msvc/resource.h new file mode 100644 index 0000000..b13f4e2 Binary files /dev/null and b/builds/msvc/resource.h differ diff --git a/builds/msvc/resource.rc b/builds/msvc/resource.rc new file mode 100644 index 0000000..39dfb3b Binary files /dev/null and b/builds/msvc/resource.rc differ diff --git a/builds/msvc/version.h b/builds/msvc/version.h new file mode 100644 index 0000000..ca13a74 --- /dev/null +++ b/builds/msvc/version.h @@ -0,0 +1,29 @@ + +#ifndef __SODIUM_VERSION_H__ +#define __SODIUM_VERSION_H__ + +#include "export.h" + +#define SODIUM_VERSION_STRING "0.6.1" + +#define SODIUM_LIBRARY_VERSION_MAJOR 6 +#define SODIUM_LIBRARY_VERSION_MINOR 1 + +#ifdef __cplusplus +extern "C" { +#endif + +SODIUM_EXPORT +const char *sodium_version_string(void); + +SODIUM_EXPORT +int sodium_library_version_major(void); + +SODIUM_EXPORT +int sodium_library_version_minor(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/builds/msvc/vs2010/libsodium.import.props b/builds/msvc/vs2010/libsodium.import.props new file mode 100644 index 0000000..c7b68c9 --- /dev/null +++ b/builds/msvc/vs2010/libsodium.import.props @@ -0,0 +1,52 @@ + + + + + <_PropertySheetDisplayName>Libsodium Import Settings + + + + + + + + + + + + + $(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + SODIUM_STATIC;%(PreprocessorDefinitions) + + + advapi32.lib;libsodium.lib;%(AdditionalDependencies) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Debug\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Release\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/libsodium.import.xml b/builds/msvc/vs2010/libsodium.import.xml new file mode 100644 index 0000000..dbcf4e5 --- /dev/null +++ b/builds/msvc/vs2010/libsodium.import.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/libsodium.sln b/builds/msvc/vs2010/libsodium.sln new file mode 100644 index 0000000..7feb9c6 --- /dev/null +++ b/builds/msvc/vs2010/libsodium.sln @@ -0,0 +1,79 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsodium", "libsodium\libsodium.vcxproj", "{A185B162-6CB6-4502-B03F-B56F7699A8D9}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test\test.vcxproj", "{4EDBA07C-2F08-4C9E-805F-A4921814C117}" + ProjectSection(ProjectDependencies) = postProject + {A185B162-6CB6-4502-B03F-B56F7699A8D9} = {A185B162-6CB6-4502-B03F-B56F7699A8D9} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + DynDebug|Win32 = DynDebug|Win32 + DynDebug|x64 = DynDebug|x64 + DynRelease|Win32 = DynRelease|Win32 + DynRelease|x64 = DynRelease|x64 + LtcgDebug|Win32 = LtcgDebug|Win32 + LtcgDebug|x64 = LtcgDebug|x64 + LtcgRelease|Win32 = LtcgRelease|Win32 + LtcgRelease|x64 = LtcgRelease|x64 + StaticDebug|Win32 = StaticDebug|Win32 + StaticDebug|x64 = StaticDebug|x64 + StaticRelease|Win32 = StaticRelease|Win32 + StaticRelease|x64 = StaticRelease|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.ActiveCfg = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.Build.0 = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.ActiveCfg = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.Build.0 = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.ActiveCfg = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.Build.0 = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.ActiveCfg = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.Build.0 = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.ActiveCfg = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.Build.0 = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.ActiveCfg = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.Build.0 = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.ActiveCfg = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.Build.0 = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.ActiveCfg = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.Build.0 = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.ActiveCfg = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.Build.0 = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.ActiveCfg = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.Build.0 = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.ActiveCfg = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.Build.0 = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.ActiveCfg = ReleaseLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.Build.0 = ReleaseLIB|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.ActiveCfg = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.Build.0 = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.ActiveCfg = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.Build.0 = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.ActiveCfg = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.Build.0 = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.ActiveCfg = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.Build.0 = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.ActiveCfg = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.Build.0 = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.ActiveCfg = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.Build.0 = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.ActiveCfg = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.Build.0 = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.ActiveCfg = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.Build.0 = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.ActiveCfg = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.Build.0 = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.ActiveCfg = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.Build.0 = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.ActiveCfg = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.Build.0 = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.ActiveCfg = ReleaseSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.Build.0 = ReleaseSEXE|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/builds/msvc/vs2010/libsodium/libsodium.props b/builds/msvc/vs2010/libsodium/libsodium.props new file mode 100644 index 0000000..7e9bca4 --- /dev/null +++ b/builds/msvc/vs2010/libsodium/libsodium.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Common Settings + AllRules.ruleset + false + + + + + + + + + + + + + copy $(BuildRoot)version.h $(RepoRoot)src\libsodium\include\sodium\ + + + $(RepoRoot)src\libsodium\include;$(RepoRoot)src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + 4146;4244;%(DisableSpecificWarnings) + false + inline=__inline;NATIVE_LITTLE_ENDIAN;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + SODIUM_STATIC;%(PreprocessorDefinitions) + DLL_EXPORT;%(PreprocessorDefinitions) + HAVE_AMD64_ASM;%(PreprocessorDefinitions) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/libsodium/libsodium.vcxproj b/builds/msvc/vs2010/libsodium/libsodium.vcxproj new file mode 100644 index 0000000..95b0006 --- /dev/null +++ b/builds/msvc/vs2010/libsodium/libsodium.vcxproj @@ -0,0 +1,365 @@ + + + + {A185B162-6CB6-4502-B03F-B56F7699A8D9} + libsodium + v100 + + + + DebugDLL + Win32 + + + ReleaseDLL + Win32 + + + DebugDLL + x64 + + + ReleaseDLL + x64 + + + DebugLTCG + Win32 + + + ReleaseLTCG + Win32 + + + DebugLTCG + x64 + + + ReleaseLTCG + x64 + + + DebugLIB + Win32 + + + ReleaseLIB + Win32 + + + DebugLIB + x64 + + + ReleaseLIB + x64 + + + + StaticLibrary + DynamicLibrary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters new file mode 100644 index 0000000..13805be --- /dev/null +++ b/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters @@ -0,0 +1,1114 @@ + + + + + include + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha256 + + + src\crypto_auth\hmacsha512256 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_generichash\blake2\ref + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_box\curve25519xsalsa20poly1305 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_core\hsalsa20 + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa20 + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa208 + + + src\crypto_core\salsa2012 + + + src\crypto_core\salsa2012 + + + src\crypto_auth + + + src\crypto_box + + + src\crypto_generichash + + + src\crypto_hash + + + src\crypto_onetimeauth + + + src\crypto_scalarmult + + + src\crypto_secretbox + + + src\crypto_shorthash + + + src\crypto_sign + + + src\crypto_stream + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_generichash\blake2 + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256 + + + src\crypto_hash\sha512 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_scalarmult\curve25519 + + + src\crypto_secretbox\xsalsa20poly1305 + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_shorthash\siphash24 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\edwards25519sha512batch + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr + + + src\crypto_stream\aes256estream + + + src\crypto_stream\salsa20 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa208 + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\salsa2012 + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_stream\xsalsa20 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_box + + + src\crypto_secretbox + + + src\crypto_hash\sha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\sodium + + + src\sodium + + + src\sodium + + + src\sodium + + + src\randombytes + + + src\crypto_verify\16 + + + src\crypto_verify\32 + + + src\crypto_verify\64 + + + src\crypto_verify\64\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\16\ref + + + src\randombytes\salsa20 + + + src\randombytes\sysrandom + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_auth\hmacsha512 + + + src\crypto_generichash\blake2\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\sodium + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256\nosse + + + src\crypto_pwhash\scryptsalsa208sha256\sse + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_verify\16\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\64\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\ref + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa2012\ref + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\amd64_xmm6 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20\ref + + + include\sodium + + + include\sodium + + + + + resource + + + resource + + + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + src\crypto_stream\salsa20\amd64_xmm6 + + + + + {03c1f568-fa7f-499c-a616-a8e0f5050b97} + + + {ddaca9ce-4d7d-4395-bfd2-2eda05bc80c2} + + + {C7DE5B24-B5D1-47D0-A83A-8C9A123D782C} + + + {b320f6a3-36a4-4b22-8c21-da7d2e12211a} + + + {983480f9-7320-4c01-b926-ee8dead5b916} + + + {02bdfd8e-f5c5-4574-bbbb-c74529732ce6} + + + {a71cc7f9-91b7-4e8f-af53-6ffb34361504} + + + {e0e40095-6fcc-4d17-892c-59dbde8eecef} + + + {2a770536-f29b-4ec2-9abe-8e197f6568d3} + + + {61deff4c-da3d-4818-be86-f303cafafdf7} + + + {d7a19b71-c3e8-4269-9196-b84b75f80ea3} + + + {a355e921-720c-400f-baa6-1ad7c92b0965} + + + {8ec29d92-3133-45d3-918b-ec83736d8fad} + + + {accf7bea-bb27-42b6-94ab-a61c5d33d2a8} + + + {5b07228e-b709-44ed-a064-f955f12346b0} + + + {7d8294db-7351-4e51-8eaf-2c5cf480babb} + + + {9646b8af-9356-4554-901a-01d788977c8f} + + + {51474f49-0245-4469-ad60-1232b070f485} + + + {076ae5b6-e83f-4dfd-8ad1-1cf9498163cf} + + + {561681e2-2540-4d96-beab-1ab5d4c917c1} + + + {120ddd61-6cd1-4942-98c4-d6f0d935561d} + + + {e368d8fe-75aa-4ae4-9108-44d7d2d6dd45} + + + {9c9ccf6a-9ddc-474f-b037-7283a2062441} + + + {a1d49972-da2e-4287-a896-3895b07b8bb6} + + + {d57353dc-ff60-4ff7-95e1-76413f5b7412} + + + {abbfd1ef-8471-4249-a8ba-2127e6ec0d3e} + + + {b6607f53-b7ec-4e2f-b3be-005ec71ebbc8} + + + {2382394d-2013-4992-a192-925667930038} + + + {e3443408-7481-46b8-b7d1-b0934db097af} + + + {7b3b0e11-3a29-4041-8ff3-b2db3515a7ea} + + + {7b85001b-afbc-47ef-b9bc-2e88d42706b9} + + + {84e229c4-90ec-44ff-bc45-4f3124d1a76a} + + + {38f6b495-9ac2-466f-a5f5-6f167c962782} + + + {6e16e561-ad11-4163-b7f5-0f54e5a6be21} + + + {defadbf0-a430-4113-b592-5bb8ccfb3db8} + + + {0ee43c44-b79e-407c-a81b-87e087125c2a} + + + {7d028278-1392-4552-94ab-3b6ddc7d6244} + + + {e82bcfa5-052a-44af-a842-103f82afb038} + + + {8974bffa-329d-4c43-a335-1ef524931734} + + + {b788850f-cd6a-49bb-a2fc-5dc217fb21a3} + + + {4dd0cec6-9024-4ca9-ad9f-e877e0aa4e39} + + + {bcf30ce5-e8cc-4c02-9411-1a493f7d0d2d} + + + {f2d8043a-ea27-4c13-abae-12dfacbf9b2f} + + + {72eb89ac-4a14-4edb-8e0f-2e7f83de9ee3} + + + {b4a8182e-ac68-44ff-9326-4cc0a9061ed8} + + + {229af36f-3c18-4cbf-8b60-84a04be8506e} + + + {ca40b775-e025-4359-87ae-02c771c1a222} + + + {afb86556-101b-407c-93f6-db784a9e3f4f} + + + {91c31952-2f36-418e-aa07-68ed57057d0f} + + + {6aaac1e4-ac4e-4ffb-8bbc-7eb2a7882720} + + + {a4f08471-9539-4f8c-af00-b94d0755bd68} + + + {8d2310cb-954e-4a9e-83bc-89258c241470} + + + {088d0208-228e-4fd3-989b-cc548cecf9cb} + + + {61ae16a0-1ba1-453d-a77c-db86d2be0568} + + + {1c006197-b25b-48e8-833f-2dd59a571b9d} + + + {3acc42ca-4646-462d-bbac-2a07e9eb30be} + + + {46eb8265-dc41-4289-aa7d-c1918e05cf75} + + + {e1301424-0353-47a8-9f5d-2c6f19bdac10} + + + {996fa5e1-cf7e-4b97-a502-edc874ee020d} + + + {4a1f7816-c9b5-4cfc-a4f3-54d094e13520} + + + {629a0d99-8735-4761-b41b-b2a91b1fdffa} + + + {08465b05-7a80-40b5-bbe5-31914fdd6e7e} + + + {280d66b5-3cf2-47b0-b3a9-2e3035267cb0} + + + {b7e800ab-220d-49ce-b083-52fd69f5c0d0} + + + {83290051-5254-49d1-9681-7e075d369f2f} + + + {df0550dd-1947-4a0f-813a-9c52a3c92d30} + + + {7800c160-ebba-47a3-bce5-513c8d59c721} + + + {d245433a-5e44-4984-8bf4-e3eabfd01080} + + + {9d51019b-0714-4c0f-b110-b796b744b3b9} + + + {e07ef1ae-589b-4aba-95d7-828098035aba} + + + {5b1a5bc3-65ad-4493-a29d-009300622f59} + + + {ff4c9104-e49a-4a1a-8072-efd241caf957} + + + {0a601d97-867d-43c6-896a-037d3ccb1b64} + + + {c390ac60-d84b-4ba9-bdf8-d893e3c5a762} + + + {3062daf0-5f1a-4d51-b52d-809b05b5497d} + + + {0f487f99-d651-4965-b2e6-5da1a04b2f43} + + + {b5ca06e6-3e8f-4c47-9896-d97976c1b1ba} + + + {99f433de-7c93-48d2-9e94-0e43420b2c09} + + + {b547f668-5741-494e-b6ec-76ddace0d0ae} + + + {938c242c-209d-4b20-8f75-6a543919382d} + + + {65197ddf-17b9-4b40-9f6e-c5ba4067785b} + + + {7a5c7f79-8538-46cb-a9ce-010f687acbc2} + + + {404da9f2-09c6-4816-8afe-de701ddddb35} + + + {da16d0f4-7f2d-4a0c-a0e2-92eec8662999} + + + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20 + + + src\crypto_stream\chacha20\ref + + + src\crypto_aead\chacha20poly1305\sodium + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/libsodium/libsodium.xml b/builds/msvc/vs2010/libsodium/libsodium.xml new file mode 100644 index 0000000..808ccb9 --- /dev/null +++ b/builds/msvc/vs2010/libsodium/libsodium.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/test/test.props b/builds/msvc/vs2010/test/test.props new file mode 100644 index 0000000..de8bd4e --- /dev/null +++ b/builds/msvc/vs2010/test/test.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Test Common Settings + AllRules.ruleset + false + + + + + + + $(RepoRoot)test\default\;$(RepoRoot)test\quirks\;%(AdditionalIncludeDirectories) + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + + + + + + + + + + + + dynamic + + + ltcg + + + static + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/test/test.runner.bat b/builds/msvc/vs2010/test/test.runner.bat new file mode 100644 index 0000000..cd7e791 --- /dev/null +++ b/builds/msvc/vs2010/test/test.runner.bat @@ -0,0 +1,78 @@ +REM WORK IN PROGRESS + +@ECHO OFF + +if "%1" == "" ( + echo "Usage: wintest.bat NUL 2>&1 + if not exist %%f.exe ( + echo %%f compile failed + goto :END + ) + %%f.exe + if errorlevel 1 ( + echo %%f failed + ) else ( + echo %%f ok + ) +) +REM Remove temporary files +del *.exe *.obj *.res *.exp *.pdb + +:END diff --git a/builds/msvc/vs2010/test/test.vcxproj b/builds/msvc/vs2010/test/test.vcxproj new file mode 100644 index 0000000..2cd94c3 --- /dev/null +++ b/builds/msvc/vs2010/test/test.vcxproj @@ -0,0 +1,214 @@ + + + + {4EDBA07C-2F08-4C9E-805F-A4921814C117} + test + v100 + Application + + + + DebugDEXE + Win32 + + + ReleaseDEXE + Win32 + + + DebugDEXE + x64 + + + ReleaseDEXE + x64 + + + DebugLEXE + Win32 + + + ReleaseLEXE + Win32 + + + DebugLEXE + x64 + + + ReleaseLEXE + x64 + + + DebugSEXE + Win32 + + + ReleaseSEXE + Win32 + + + DebugSEXE + x64 + + + ReleaseSEXE + x64 + + + + + + + + + + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2010/test/test.vcxproj.filters b/builds/msvc/vs2010/test/test.vcxproj.filters new file mode 100644 index 0000000..c0819e8 --- /dev/null +++ b/builds/msvc/vs2010/test/test.vcxproj.filters @@ -0,0 +1,162 @@ + + + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + + + include + + + include + + + + + {705beade-aa7f-49c0-900e-4b0cbbdc2f7b} + + + {5b5af4b5-c6aa-4b30-bdef-074b1bdc43ea} + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium.import.props b/builds/msvc/vs2012/libsodium.import.props new file mode 100644 index 0000000..c7b68c9 --- /dev/null +++ b/builds/msvc/vs2012/libsodium.import.props @@ -0,0 +1,52 @@ + + + + + <_PropertySheetDisplayName>Libsodium Import Settings + + + + + + + + + + + + + $(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + SODIUM_STATIC;%(PreprocessorDefinitions) + + + advapi32.lib;libsodium.lib;%(AdditionalDependencies) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Debug\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Release\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium.import.xml b/builds/msvc/vs2012/libsodium.import.xml new file mode 100644 index 0000000..dbcf4e5 --- /dev/null +++ b/builds/msvc/vs2012/libsodium.import.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium.sln b/builds/msvc/vs2012/libsodium.sln new file mode 100644 index 0000000..87cf859 --- /dev/null +++ b/builds/msvc/vs2012/libsodium.sln @@ -0,0 +1,79 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsodium", "libsodium\libsodium.vcxproj", "{A185B162-6CB6-4502-B03F-B56F7699A8D9}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test\test.vcxproj", "{4EDBA07C-2F08-4C9E-805F-A4921814C117}" + ProjectSection(ProjectDependencies) = postProject + {A185B162-6CB6-4502-B03F-B56F7699A8D9} = {A185B162-6CB6-4502-B03F-B56F7699A8D9} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + DynDebug|Win32 = DynDebug|Win32 + DynDebug|x64 = DynDebug|x64 + DynRelease|Win32 = DynRelease|Win32 + DynRelease|x64 = DynRelease|x64 + LtcgDebug|Win32 = LtcgDebug|Win32 + LtcgDebug|x64 = LtcgDebug|x64 + LtcgRelease|Win32 = LtcgRelease|Win32 + LtcgRelease|x64 = LtcgRelease|x64 + StaticDebug|Win32 = StaticDebug|Win32 + StaticDebug|x64 = StaticDebug|x64 + StaticRelease|Win32 = StaticRelease|Win32 + StaticRelease|x64 = StaticRelease|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.ActiveCfg = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.Build.0 = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.ActiveCfg = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.Build.0 = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.ActiveCfg = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.Build.0 = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.ActiveCfg = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.Build.0 = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.ActiveCfg = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.Build.0 = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.ActiveCfg = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.Build.0 = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.ActiveCfg = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.Build.0 = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.ActiveCfg = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.Build.0 = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.ActiveCfg = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.Build.0 = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.ActiveCfg = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.Build.0 = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.ActiveCfg = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.Build.0 = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.ActiveCfg = ReleaseLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.Build.0 = ReleaseLIB|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.ActiveCfg = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.Build.0 = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.ActiveCfg = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.Build.0 = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.ActiveCfg = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.Build.0 = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.ActiveCfg = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.Build.0 = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.ActiveCfg = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.Build.0 = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.ActiveCfg = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.Build.0 = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.ActiveCfg = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.Build.0 = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.ActiveCfg = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.Build.0 = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.ActiveCfg = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.Build.0 = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.ActiveCfg = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.Build.0 = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.ActiveCfg = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.Build.0 = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.ActiveCfg = ReleaseSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.Build.0 = ReleaseSEXE|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/builds/msvc/vs2012/libsodium/libsodium.props b/builds/msvc/vs2012/libsodium/libsodium.props new file mode 100644 index 0000000..7e9bca4 --- /dev/null +++ b/builds/msvc/vs2012/libsodium/libsodium.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Common Settings + AllRules.ruleset + false + + + + + + + + + + + + + copy $(BuildRoot)version.h $(RepoRoot)src\libsodium\include\sodium\ + + + $(RepoRoot)src\libsodium\include;$(RepoRoot)src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + 4146;4244;%(DisableSpecificWarnings) + false + inline=__inline;NATIVE_LITTLE_ENDIAN;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + SODIUM_STATIC;%(PreprocessorDefinitions) + DLL_EXPORT;%(PreprocessorDefinitions) + HAVE_AMD64_ASM;%(PreprocessorDefinitions) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium/libsodium.vcxproj b/builds/msvc/vs2012/libsodium/libsodium.vcxproj new file mode 100644 index 0000000..f47a042 --- /dev/null +++ b/builds/msvc/vs2012/libsodium/libsodium.vcxproj @@ -0,0 +1,365 @@ + + + + {A185B162-6CB6-4502-B03F-B56F7699A8D9} + libsodium + v110 + + + + DebugDLL + Win32 + + + ReleaseDLL + Win32 + + + DebugDLL + x64 + + + ReleaseDLL + x64 + + + DebugLTCG + Win32 + + + ReleaseLTCG + Win32 + + + DebugLTCG + x64 + + + ReleaseLTCG + x64 + + + DebugLIB + Win32 + + + ReleaseLIB + Win32 + + + DebugLIB + x64 + + + ReleaseLIB + x64 + + + + StaticLibrary + DynamicLibrary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters new file mode 100644 index 0000000..13805be --- /dev/null +++ b/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters @@ -0,0 +1,1114 @@ + + + + + include + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha256 + + + src\crypto_auth\hmacsha512256 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_generichash\blake2\ref + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_box\curve25519xsalsa20poly1305 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_core\hsalsa20 + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa20 + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa208 + + + src\crypto_core\salsa2012 + + + src\crypto_core\salsa2012 + + + src\crypto_auth + + + src\crypto_box + + + src\crypto_generichash + + + src\crypto_hash + + + src\crypto_onetimeauth + + + src\crypto_scalarmult + + + src\crypto_secretbox + + + src\crypto_shorthash + + + src\crypto_sign + + + src\crypto_stream + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_generichash\blake2 + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256 + + + src\crypto_hash\sha512 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_scalarmult\curve25519 + + + src\crypto_secretbox\xsalsa20poly1305 + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_shorthash\siphash24 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\edwards25519sha512batch + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr + + + src\crypto_stream\aes256estream + + + src\crypto_stream\salsa20 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa208 + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\salsa2012 + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_stream\xsalsa20 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_box + + + src\crypto_secretbox + + + src\crypto_hash\sha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\sodium + + + src\sodium + + + src\sodium + + + src\sodium + + + src\randombytes + + + src\crypto_verify\16 + + + src\crypto_verify\32 + + + src\crypto_verify\64 + + + src\crypto_verify\64\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\16\ref + + + src\randombytes\salsa20 + + + src\randombytes\sysrandom + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_auth\hmacsha512 + + + src\crypto_generichash\blake2\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\sodium + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256\nosse + + + src\crypto_pwhash\scryptsalsa208sha256\sse + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_verify\16\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\64\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\ref + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa2012\ref + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\amd64_xmm6 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20\ref + + + include\sodium + + + include\sodium + + + + + resource + + + resource + + + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + src\crypto_stream\salsa20\amd64_xmm6 + + + + + {03c1f568-fa7f-499c-a616-a8e0f5050b97} + + + {ddaca9ce-4d7d-4395-bfd2-2eda05bc80c2} + + + {C7DE5B24-B5D1-47D0-A83A-8C9A123D782C} + + + {b320f6a3-36a4-4b22-8c21-da7d2e12211a} + + + {983480f9-7320-4c01-b926-ee8dead5b916} + + + {02bdfd8e-f5c5-4574-bbbb-c74529732ce6} + + + {a71cc7f9-91b7-4e8f-af53-6ffb34361504} + + + {e0e40095-6fcc-4d17-892c-59dbde8eecef} + + + {2a770536-f29b-4ec2-9abe-8e197f6568d3} + + + {61deff4c-da3d-4818-be86-f303cafafdf7} + + + {d7a19b71-c3e8-4269-9196-b84b75f80ea3} + + + {a355e921-720c-400f-baa6-1ad7c92b0965} + + + {8ec29d92-3133-45d3-918b-ec83736d8fad} + + + {accf7bea-bb27-42b6-94ab-a61c5d33d2a8} + + + {5b07228e-b709-44ed-a064-f955f12346b0} + + + {7d8294db-7351-4e51-8eaf-2c5cf480babb} + + + {9646b8af-9356-4554-901a-01d788977c8f} + + + {51474f49-0245-4469-ad60-1232b070f485} + + + {076ae5b6-e83f-4dfd-8ad1-1cf9498163cf} + + + {561681e2-2540-4d96-beab-1ab5d4c917c1} + + + {120ddd61-6cd1-4942-98c4-d6f0d935561d} + + + {e368d8fe-75aa-4ae4-9108-44d7d2d6dd45} + + + {9c9ccf6a-9ddc-474f-b037-7283a2062441} + + + {a1d49972-da2e-4287-a896-3895b07b8bb6} + + + {d57353dc-ff60-4ff7-95e1-76413f5b7412} + + + {abbfd1ef-8471-4249-a8ba-2127e6ec0d3e} + + + {b6607f53-b7ec-4e2f-b3be-005ec71ebbc8} + + + {2382394d-2013-4992-a192-925667930038} + + + {e3443408-7481-46b8-b7d1-b0934db097af} + + + {7b3b0e11-3a29-4041-8ff3-b2db3515a7ea} + + + {7b85001b-afbc-47ef-b9bc-2e88d42706b9} + + + {84e229c4-90ec-44ff-bc45-4f3124d1a76a} + + + {38f6b495-9ac2-466f-a5f5-6f167c962782} + + + {6e16e561-ad11-4163-b7f5-0f54e5a6be21} + + + {defadbf0-a430-4113-b592-5bb8ccfb3db8} + + + {0ee43c44-b79e-407c-a81b-87e087125c2a} + + + {7d028278-1392-4552-94ab-3b6ddc7d6244} + + + {e82bcfa5-052a-44af-a842-103f82afb038} + + + {8974bffa-329d-4c43-a335-1ef524931734} + + + {b788850f-cd6a-49bb-a2fc-5dc217fb21a3} + + + {4dd0cec6-9024-4ca9-ad9f-e877e0aa4e39} + + + {bcf30ce5-e8cc-4c02-9411-1a493f7d0d2d} + + + {f2d8043a-ea27-4c13-abae-12dfacbf9b2f} + + + {72eb89ac-4a14-4edb-8e0f-2e7f83de9ee3} + + + {b4a8182e-ac68-44ff-9326-4cc0a9061ed8} + + + {229af36f-3c18-4cbf-8b60-84a04be8506e} + + + {ca40b775-e025-4359-87ae-02c771c1a222} + + + {afb86556-101b-407c-93f6-db784a9e3f4f} + + + {91c31952-2f36-418e-aa07-68ed57057d0f} + + + {6aaac1e4-ac4e-4ffb-8bbc-7eb2a7882720} + + + {a4f08471-9539-4f8c-af00-b94d0755bd68} + + + {8d2310cb-954e-4a9e-83bc-89258c241470} + + + {088d0208-228e-4fd3-989b-cc548cecf9cb} + + + {61ae16a0-1ba1-453d-a77c-db86d2be0568} + + + {1c006197-b25b-48e8-833f-2dd59a571b9d} + + + {3acc42ca-4646-462d-bbac-2a07e9eb30be} + + + {46eb8265-dc41-4289-aa7d-c1918e05cf75} + + + {e1301424-0353-47a8-9f5d-2c6f19bdac10} + + + {996fa5e1-cf7e-4b97-a502-edc874ee020d} + + + {4a1f7816-c9b5-4cfc-a4f3-54d094e13520} + + + {629a0d99-8735-4761-b41b-b2a91b1fdffa} + + + {08465b05-7a80-40b5-bbe5-31914fdd6e7e} + + + {280d66b5-3cf2-47b0-b3a9-2e3035267cb0} + + + {b7e800ab-220d-49ce-b083-52fd69f5c0d0} + + + {83290051-5254-49d1-9681-7e075d369f2f} + + + {df0550dd-1947-4a0f-813a-9c52a3c92d30} + + + {7800c160-ebba-47a3-bce5-513c8d59c721} + + + {d245433a-5e44-4984-8bf4-e3eabfd01080} + + + {9d51019b-0714-4c0f-b110-b796b744b3b9} + + + {e07ef1ae-589b-4aba-95d7-828098035aba} + + + {5b1a5bc3-65ad-4493-a29d-009300622f59} + + + {ff4c9104-e49a-4a1a-8072-efd241caf957} + + + {0a601d97-867d-43c6-896a-037d3ccb1b64} + + + {c390ac60-d84b-4ba9-bdf8-d893e3c5a762} + + + {3062daf0-5f1a-4d51-b52d-809b05b5497d} + + + {0f487f99-d651-4965-b2e6-5da1a04b2f43} + + + {b5ca06e6-3e8f-4c47-9896-d97976c1b1ba} + + + {99f433de-7c93-48d2-9e94-0e43420b2c09} + + + {b547f668-5741-494e-b6ec-76ddace0d0ae} + + + {938c242c-209d-4b20-8f75-6a543919382d} + + + {65197ddf-17b9-4b40-9f6e-c5ba4067785b} + + + {7a5c7f79-8538-46cb-a9ce-010f687acbc2} + + + {404da9f2-09c6-4816-8afe-de701ddddb35} + + + {da16d0f4-7f2d-4a0c-a0e2-92eec8662999} + + + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20 + + + src\crypto_stream\chacha20\ref + + + src\crypto_aead\chacha20poly1305\sodium + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/libsodium/libsodium.xml b/builds/msvc/vs2012/libsodium/libsodium.xml new file mode 100644 index 0000000..808ccb9 --- /dev/null +++ b/builds/msvc/vs2012/libsodium/libsodium.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/test/test.props b/builds/msvc/vs2012/test/test.props new file mode 100644 index 0000000..de8bd4e --- /dev/null +++ b/builds/msvc/vs2012/test/test.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Test Common Settings + AllRules.ruleset + false + + + + + + + $(RepoRoot)test\default\;$(RepoRoot)test\quirks\;%(AdditionalIncludeDirectories) + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + + + + + + + + + + + + dynamic + + + ltcg + + + static + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/test/test.runner.bat b/builds/msvc/vs2012/test/test.runner.bat new file mode 100644 index 0000000..cd7e791 --- /dev/null +++ b/builds/msvc/vs2012/test/test.runner.bat @@ -0,0 +1,78 @@ +REM WORK IN PROGRESS + +@ECHO OFF + +if "%1" == "" ( + echo "Usage: wintest.bat NUL 2>&1 + if not exist %%f.exe ( + echo %%f compile failed + goto :END + ) + %%f.exe + if errorlevel 1 ( + echo %%f failed + ) else ( + echo %%f ok + ) +) +REM Remove temporary files +del *.exe *.obj *.res *.exp *.pdb + +:END diff --git a/builds/msvc/vs2012/test/test.vcxproj b/builds/msvc/vs2012/test/test.vcxproj new file mode 100644 index 0000000..65fd4d8 --- /dev/null +++ b/builds/msvc/vs2012/test/test.vcxproj @@ -0,0 +1,214 @@ + + + + {4EDBA07C-2F08-4C9E-805F-A4921814C117} + test + v110 + Application + + + + DebugDEXE + Win32 + + + ReleaseDEXE + Win32 + + + DebugDEXE + x64 + + + ReleaseDEXE + x64 + + + DebugLEXE + Win32 + + + ReleaseLEXE + Win32 + + + DebugLEXE + x64 + + + ReleaseLEXE + x64 + + + DebugSEXE + Win32 + + + ReleaseSEXE + Win32 + + + DebugSEXE + x64 + + + ReleaseSEXE + x64 + + + + + + + + + + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2012/test/test.vcxproj.filters b/builds/msvc/vs2012/test/test.vcxproj.filters new file mode 100644 index 0000000..c0819e8 --- /dev/null +++ b/builds/msvc/vs2012/test/test.vcxproj.filters @@ -0,0 +1,162 @@ + + + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + + + include + + + include + + + + + {705beade-aa7f-49c0-900e-4b0cbbdc2f7b} + + + {5b5af4b5-c6aa-4b30-bdef-074b1bdc43ea} + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium.import.props b/builds/msvc/vs2013/libsodium.import.props new file mode 100644 index 0000000..c7b68c9 --- /dev/null +++ b/builds/msvc/vs2013/libsodium.import.props @@ -0,0 +1,52 @@ + + + + + <_PropertySheetDisplayName>Libsodium Import Settings + + + + + + + + + + + + + $(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\..\..\libsodium\src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + SODIUM_STATIC;%(PreprocessorDefinitions) + + + advapi32.lib;libsodium.lib;%(AdditionalDependencies) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Debug\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + $(ProjectDir)..\..\..\..\..\libsodium\bin\$(PlatformName)\Release\$(PlatformToolset)\$(Linkage-libsodium)\;%(AdditionalLibraryDirectories) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium.import.xml b/builds/msvc/vs2013/libsodium.import.xml new file mode 100644 index 0000000..dbcf4e5 --- /dev/null +++ b/builds/msvc/vs2013/libsodium.import.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium.sln b/builds/msvc/vs2013/libsodium.sln new file mode 100644 index 0000000..8849e44 --- /dev/null +++ b/builds/msvc/vs2013/libsodium.sln @@ -0,0 +1,81 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.30110.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsodium", "libsodium\libsodium.vcxproj", "{A185B162-6CB6-4502-B03F-B56F7699A8D9}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test\test.vcxproj", "{4EDBA07C-2F08-4C9E-805F-A4921814C117}" + ProjectSection(ProjectDependencies) = postProject + {A185B162-6CB6-4502-B03F-B56F7699A8D9} = {A185B162-6CB6-4502-B03F-B56F7699A8D9} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + DynDebug|Win32 = DynDebug|Win32 + DynDebug|x64 = DynDebug|x64 + DynRelease|Win32 = DynRelease|Win32 + DynRelease|x64 = DynRelease|x64 + LtcgDebug|Win32 = LtcgDebug|Win32 + LtcgDebug|x64 = LtcgDebug|x64 + LtcgRelease|Win32 = LtcgRelease|Win32 + LtcgRelease|x64 = LtcgRelease|x64 + StaticDebug|Win32 = StaticDebug|Win32 + StaticDebug|x64 = StaticDebug|x64 + StaticRelease|Win32 = StaticRelease|Win32 + StaticRelease|x64 = StaticRelease|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.ActiveCfg = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.Build.0 = DebugDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.ActiveCfg = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.Build.0 = DebugDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.ActiveCfg = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.Build.0 = ReleaseDLL|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.ActiveCfg = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.Build.0 = ReleaseDLL|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.ActiveCfg = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.Build.0 = DebugLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.ActiveCfg = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.Build.0 = DebugLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.ActiveCfg = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.Build.0 = ReleaseLTCG|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.ActiveCfg = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.Build.0 = ReleaseLTCG|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.ActiveCfg = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.Build.0 = DebugLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.ActiveCfg = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.Build.0 = DebugLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.ActiveCfg = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.Build.0 = ReleaseLIB|Win32 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.ActiveCfg = ReleaseLIB|x64 + {A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.Build.0 = ReleaseLIB|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.ActiveCfg = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|Win32.Build.0 = DebugDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.ActiveCfg = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynDebug|x64.Build.0 = DebugDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.ActiveCfg = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|Win32.Build.0 = ReleaseDEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.ActiveCfg = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.DynRelease|x64.Build.0 = ReleaseDEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.ActiveCfg = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|Win32.Build.0 = DebugLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.ActiveCfg = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgDebug|x64.Build.0 = DebugLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.ActiveCfg = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|Win32.Build.0 = ReleaseLEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.ActiveCfg = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.LtcgRelease|x64.Build.0 = ReleaseLEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.ActiveCfg = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|Win32.Build.0 = DebugSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.ActiveCfg = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticDebug|x64.Build.0 = DebugSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.ActiveCfg = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|Win32.Build.0 = ReleaseSEXE|Win32 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.ActiveCfg = ReleaseSEXE|x64 + {4EDBA07C-2F08-4C9E-805F-A4921814C117}.StaticRelease|x64.Build.0 = ReleaseSEXE|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/builds/msvc/vs2013/libsodium/libsodium.props b/builds/msvc/vs2013/libsodium/libsodium.props new file mode 100644 index 0000000..7e9bca4 --- /dev/null +++ b/builds/msvc/vs2013/libsodium/libsodium.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Common Settings + AllRules.ruleset + false + + + + + + + + + + + + + copy $(BuildRoot)version.h $(RepoRoot)src\libsodium\include\sodium\ + + + $(RepoRoot)src\libsodium\include;$(RepoRoot)src\libsodium\include\sodium\;%(AdditionalIncludeDirectories) + 4146;4244;%(DisableSpecificWarnings) + false + inline=__inline;NATIVE_LITTLE_ENDIAN;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + SODIUM_STATIC;%(PreprocessorDefinitions) + DLL_EXPORT;%(PreprocessorDefinitions) + HAVE_AMD64_ASM;%(PreprocessorDefinitions) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium/libsodium.vcxproj b/builds/msvc/vs2013/libsodium/libsodium.vcxproj new file mode 100644 index 0000000..022bbe7 --- /dev/null +++ b/builds/msvc/vs2013/libsodium/libsodium.vcxproj @@ -0,0 +1,365 @@ + + + + {A185B162-6CB6-4502-B03F-B56F7699A8D9} + libsodium + v120 + + + + DebugDLL + Win32 + + + ReleaseDLL + Win32 + + + DebugDLL + x64 + + + ReleaseDLL + x64 + + + DebugLTCG + Win32 + + + ReleaseLTCG + Win32 + + + DebugLTCG + x64 + + + ReleaseLTCG + x64 + + + DebugLIB + Win32 + + + ReleaseLIB + Win32 + + + DebugLIB + x64 + + + ReleaseLIB + x64 + + + + StaticLibrary + DynamicLibrary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters new file mode 100644 index 0000000..13805be --- /dev/null +++ b/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters @@ -0,0 +1,1114 @@ + + + + + include + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + include\sodium + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha256 + + + src\crypto_auth\hmacsha512256 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_generichash\blake2\ref + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_box\curve25519xsalsa20poly1305 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_core\hsalsa20 + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa20 + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa208 + + + src\crypto_core\salsa2012 + + + src\crypto_core\salsa2012 + + + src\crypto_auth + + + src\crypto_box + + + src\crypto_generichash + + + src\crypto_hash + + + src\crypto_onetimeauth + + + src\crypto_scalarmult + + + src\crypto_secretbox + + + src\crypto_shorthash + + + src\crypto_sign + + + src\crypto_stream + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_generichash\blake2 + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256 + + + src\crypto_hash\sha512 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_onetimeauth\poly1305 + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_scalarmult\curve25519 + + + src\crypto_secretbox\xsalsa20poly1305 + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_shorthash\siphash24 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\edwards25519sha512batch + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr + + + src\crypto_stream\aes256estream + + + src\crypto_stream\salsa20 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa208 + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\salsa2012 + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_stream\xsalsa20 + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_box + + + src\crypto_secretbox + + + src\crypto_hash\sha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_auth\hmacsha512256\cp + + + src\sodium + + + src\sodium + + + src\sodium + + + src\sodium + + + src\randombytes + + + src\crypto_verify\16 + + + src\crypto_verify\32 + + + src\crypto_verify\64 + + + src\crypto_verify\64\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\16\ref + + + src\randombytes\salsa20 + + + src\randombytes\sysrandom + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_auth\hmacsha512 + + + src\crypto_generichash\blake2\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\sodium + + + src\crypto_pwhash\scryptsalsa208sha256 + + + src\crypto_pwhash\scryptsalsa208sha256\nosse + + + src\crypto_pwhash\scryptsalsa208sha256\sse + + + src\crypto_auth\hmacsha512256\cp + + + src\crypto_box\curve25519xsalsa20poly1305\ref + + + src\crypto_generichash\blake2\ref + + + src\crypto_hash\sha256\cp + + + src\crypto_hash\sha512\cp + + + src\crypto_onetimeauth\poly1305\donna + + + src\crypto_secretbox\xsalsa20poly1305\ref + + + src\crypto_shorthash\siphash24\ref + + + src\crypto_sign\edwards25519sha512batch\ref + + + src\crypto_stream\aes128ctr\portable + + + src\crypto_stream\aes256estream\hongjun + + + src\crypto_verify\16\ref + + + src\crypto_verify\32\ref + + + src\crypto_verify\64\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\ref + + + src\crypto_core\salsa20\ref + + + src\crypto_core\salsa208\ref + + + src\crypto_core\salsa2012\ref + + + src\crypto_core\hsalsa20\ref2 + + + src\crypto_stream\salsa208\ref + + + src\crypto_stream\salsa2012\ref + + + src\crypto_stream\xsalsa20\ref + + + src\crypto_scalarmult\curve25519\donna_c64 + + + src\crypto_stream\salsa20\ref + + + src\crypto_stream\salsa20\amd64_xmm6 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_sign\ed25519\ref10 + + + src\crypto_auth\hmacsha256\cp + + + src\crypto_auth\hmacsha512\cp + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20\ref + + + include\sodium + + + include\sodium + + + + + resource + + + resource + + + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + packaging + + + src\crypto_stream\salsa20\amd64_xmm6 + + + + + {03c1f568-fa7f-499c-a616-a8e0f5050b97} + + + {ddaca9ce-4d7d-4395-bfd2-2eda05bc80c2} + + + {C7DE5B24-B5D1-47D0-A83A-8C9A123D782C} + + + {b320f6a3-36a4-4b22-8c21-da7d2e12211a} + + + {983480f9-7320-4c01-b926-ee8dead5b916} + + + {02bdfd8e-f5c5-4574-bbbb-c74529732ce6} + + + {a71cc7f9-91b7-4e8f-af53-6ffb34361504} + + + {e0e40095-6fcc-4d17-892c-59dbde8eecef} + + + {2a770536-f29b-4ec2-9abe-8e197f6568d3} + + + {61deff4c-da3d-4818-be86-f303cafafdf7} + + + {d7a19b71-c3e8-4269-9196-b84b75f80ea3} + + + {a355e921-720c-400f-baa6-1ad7c92b0965} + + + {8ec29d92-3133-45d3-918b-ec83736d8fad} + + + {accf7bea-bb27-42b6-94ab-a61c5d33d2a8} + + + {5b07228e-b709-44ed-a064-f955f12346b0} + + + {7d8294db-7351-4e51-8eaf-2c5cf480babb} + + + {9646b8af-9356-4554-901a-01d788977c8f} + + + {51474f49-0245-4469-ad60-1232b070f485} + + + {076ae5b6-e83f-4dfd-8ad1-1cf9498163cf} + + + {561681e2-2540-4d96-beab-1ab5d4c917c1} + + + {120ddd61-6cd1-4942-98c4-d6f0d935561d} + + + {e368d8fe-75aa-4ae4-9108-44d7d2d6dd45} + + + {9c9ccf6a-9ddc-474f-b037-7283a2062441} + + + {a1d49972-da2e-4287-a896-3895b07b8bb6} + + + {d57353dc-ff60-4ff7-95e1-76413f5b7412} + + + {abbfd1ef-8471-4249-a8ba-2127e6ec0d3e} + + + {b6607f53-b7ec-4e2f-b3be-005ec71ebbc8} + + + {2382394d-2013-4992-a192-925667930038} + + + {e3443408-7481-46b8-b7d1-b0934db097af} + + + {7b3b0e11-3a29-4041-8ff3-b2db3515a7ea} + + + {7b85001b-afbc-47ef-b9bc-2e88d42706b9} + + + {84e229c4-90ec-44ff-bc45-4f3124d1a76a} + + + {38f6b495-9ac2-466f-a5f5-6f167c962782} + + + {6e16e561-ad11-4163-b7f5-0f54e5a6be21} + + + {defadbf0-a430-4113-b592-5bb8ccfb3db8} + + + {0ee43c44-b79e-407c-a81b-87e087125c2a} + + + {7d028278-1392-4552-94ab-3b6ddc7d6244} + + + {e82bcfa5-052a-44af-a842-103f82afb038} + + + {8974bffa-329d-4c43-a335-1ef524931734} + + + {b788850f-cd6a-49bb-a2fc-5dc217fb21a3} + + + {4dd0cec6-9024-4ca9-ad9f-e877e0aa4e39} + + + {bcf30ce5-e8cc-4c02-9411-1a493f7d0d2d} + + + {f2d8043a-ea27-4c13-abae-12dfacbf9b2f} + + + {72eb89ac-4a14-4edb-8e0f-2e7f83de9ee3} + + + {b4a8182e-ac68-44ff-9326-4cc0a9061ed8} + + + {229af36f-3c18-4cbf-8b60-84a04be8506e} + + + {ca40b775-e025-4359-87ae-02c771c1a222} + + + {afb86556-101b-407c-93f6-db784a9e3f4f} + + + {91c31952-2f36-418e-aa07-68ed57057d0f} + + + {6aaac1e4-ac4e-4ffb-8bbc-7eb2a7882720} + + + {a4f08471-9539-4f8c-af00-b94d0755bd68} + + + {8d2310cb-954e-4a9e-83bc-89258c241470} + + + {088d0208-228e-4fd3-989b-cc548cecf9cb} + + + {61ae16a0-1ba1-453d-a77c-db86d2be0568} + + + {1c006197-b25b-48e8-833f-2dd59a571b9d} + + + {3acc42ca-4646-462d-bbac-2a07e9eb30be} + + + {46eb8265-dc41-4289-aa7d-c1918e05cf75} + + + {e1301424-0353-47a8-9f5d-2c6f19bdac10} + + + {996fa5e1-cf7e-4b97-a502-edc874ee020d} + + + {4a1f7816-c9b5-4cfc-a4f3-54d094e13520} + + + {629a0d99-8735-4761-b41b-b2a91b1fdffa} + + + {08465b05-7a80-40b5-bbe5-31914fdd6e7e} + + + {280d66b5-3cf2-47b0-b3a9-2e3035267cb0} + + + {b7e800ab-220d-49ce-b083-52fd69f5c0d0} + + + {83290051-5254-49d1-9681-7e075d369f2f} + + + {df0550dd-1947-4a0f-813a-9c52a3c92d30} + + + {7800c160-ebba-47a3-bce5-513c8d59c721} + + + {d245433a-5e44-4984-8bf4-e3eabfd01080} + + + {9d51019b-0714-4c0f-b110-b796b744b3b9} + + + {e07ef1ae-589b-4aba-95d7-828098035aba} + + + {5b1a5bc3-65ad-4493-a29d-009300622f59} + + + {ff4c9104-e49a-4a1a-8072-efd241caf957} + + + {0a601d97-867d-43c6-896a-037d3ccb1b64} + + + {c390ac60-d84b-4ba9-bdf8-d893e3c5a762} + + + {3062daf0-5f1a-4d51-b52d-809b05b5497d} + + + {0f487f99-d651-4965-b2e6-5da1a04b2f43} + + + {b5ca06e6-3e8f-4c47-9896-d97976c1b1ba} + + + {99f433de-7c93-48d2-9e94-0e43420b2c09} + + + {b547f668-5741-494e-b6ec-76ddace0d0ae} + + + {938c242c-209d-4b20-8f75-6a543919382d} + + + {65197ddf-17b9-4b40-9f6e-c5ba4067785b} + + + {7a5c7f79-8538-46cb-a9ce-010f687acbc2} + + + {404da9f2-09c6-4816-8afe-de701ddddb35} + + + {da16d0f4-7f2d-4a0c-a0e2-92eec8662999} + + + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_scalarmult\curve25519\ref10 + + + src\crypto_stream\chacha20 + + + src\crypto_stream\chacha20\ref + + + src\crypto_aead\chacha20poly1305\sodium + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/libsodium/libsodium.xml b/builds/msvc/vs2013/libsodium/libsodium.xml new file mode 100644 index 0000000..808ccb9 --- /dev/null +++ b/builds/msvc/vs2013/libsodium/libsodium.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/test/test.props b/builds/msvc/vs2013/test/test.props new file mode 100644 index 0000000..de8bd4e --- /dev/null +++ b/builds/msvc/vs2013/test/test.props @@ -0,0 +1,43 @@ + + + + + <_PropertySheetDisplayName>Libsodium Test Common Settings + AllRules.ruleset + false + + + + + + + $(RepoRoot)test\default\;$(RepoRoot)test\quirks\;%(AdditionalIncludeDirectories) + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + + + + + + + + + + + + dynamic + + + ltcg + + + static + + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/test/test.runner.bat b/builds/msvc/vs2013/test/test.runner.bat new file mode 100644 index 0000000..cd7e791 --- /dev/null +++ b/builds/msvc/vs2013/test/test.runner.bat @@ -0,0 +1,78 @@ +REM WORK IN PROGRESS + +@ECHO OFF + +if "%1" == "" ( + echo "Usage: wintest.bat NUL 2>&1 + if not exist %%f.exe ( + echo %%f compile failed + goto :END + ) + %%f.exe + if errorlevel 1 ( + echo %%f failed + ) else ( + echo %%f ok + ) +) +REM Remove temporary files +del *.exe *.obj *.res *.exp *.pdb + +:END diff --git a/builds/msvc/vs2013/test/test.vcxproj b/builds/msvc/vs2013/test/test.vcxproj new file mode 100644 index 0000000..780396e --- /dev/null +++ b/builds/msvc/vs2013/test/test.vcxproj @@ -0,0 +1,214 @@ + + + + {4EDBA07C-2F08-4C9E-805F-A4921814C117} + test + v120 + Application + + + + DebugDEXE + Win32 + + + ReleaseDEXE + Win32 + + + DebugDEXE + x64 + + + ReleaseDEXE + x64 + + + DebugLEXE + Win32 + + + ReleaseLEXE + Win32 + + + DebugLEXE + x64 + + + ReleaseLEXE + x64 + + + DebugSEXE + Win32 + + + ReleaseSEXE + Win32 + + + DebugSEXE + x64 + + + ReleaseSEXE + x64 + + + + + + + + + + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + + \ No newline at end of file diff --git a/builds/msvc/vs2013/test/test.vcxproj.filters b/builds/msvc/vs2013/test/test.vcxproj.filters new file mode 100644 index 0000000..c0819e8 --- /dev/null +++ b/builds/msvc/vs2013/test/test.vcxproj.filters @@ -0,0 +1,162 @@ + + + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + src + + + + + include + + + include + + + + + {705beade-aa7f-49c0-900e-4b0cbbdc2f7b} + + + {5b5af4b5-c6aa-4b30-bdef-074b1bdc43ea} + + + \ No newline at end of file -- cgit v1.2.3