libsodium-1.0.19-stable.tar.gz
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4490 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
parent
d1e494b730
commit
424b9b5a2f
2
Makefile
2
Makefile
@ -312,7 +312,7 @@ SODIUM_SOURCES := \
|
|||||||
deps/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c \
|
deps/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c \
|
||||||
deps/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c \
|
deps/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c \
|
||||||
deps/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c \
|
deps/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c \
|
||||||
deps/libsodium/src/libsodium/crypto_verify/sodium/verify.c \
|
deps/libsodium/src/libsodium/crypto_verify/verify.c \
|
||||||
deps/libsodium/src/libsodium/randombytes/randombytes.c \
|
deps/libsodium/src/libsodium/randombytes/randombytes.c \
|
||||||
deps/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c \
|
deps/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c \
|
||||||
deps/libsodium/src/libsodium/sodium/core.c \
|
deps/libsodium/src/libsodium/sodium/core.c \
|
||||||
|
6
deps/libsodium/.github/workflows/ci.yml
vendored
6
deps/libsodium/.github/workflows/ci.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
curl -sL -o - https://ziglang.org/download/0.10.1/zig-linux-x86_64-0.10.1.tar.xz | tar xJ -f - -C /opt/
|
curl -sL -o - https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz | tar xJ -f - -C /opt/
|
||||||
sudo mv /opt/zig-* /opt/zig
|
sudo mv /opt/zig-* /opt/zig
|
||||||
|
|
||||||
- name: Autogen
|
- name: Autogen
|
||||||
@ -59,7 +59,7 @@ jobs:
|
|||||||
zig build -Dtarget=x86_64-macos
|
zig build -Dtarget=x86_64-macos
|
||||||
zig build -Dtarget=aarch64-macos
|
zig build -Dtarget=aarch64-macos
|
||||||
zig build -Dtarget=wasm32-wasi
|
zig build -Dtarget=wasm32-wasi
|
||||||
zig build -Drelease-fast
|
zig build -Doptimize=ReleaseFast
|
||||||
rm -fr zig-cache zig-out
|
rm -fr zig-cache zig-out
|
||||||
|
|
||||||
regular:
|
regular:
|
||||||
@ -172,7 +172,7 @@ jobs:
|
|||||||
- name: Install Android NDK
|
- name: Install Android NDK
|
||||||
run: |
|
run: |
|
||||||
mkdir /tmp/android && cd /tmp/android
|
mkdir /tmp/android && cd /tmp/android
|
||||||
curl -o ndk.zip -L https://dl.google.com/android/repository/android-ndk-r25b-linux.zip
|
curl -o ndk.zip -L https://dl.google.com/android/repository/android-ndk-r25c-linux.zip
|
||||||
unzip ndk.zip && rm -f *.zip && mv android-ndk* ndk
|
unzip ndk.zip && rm -f *.zip && mv android-ndk* ndk
|
||||||
|
|
||||||
- name: Android compilation
|
- name: Android compilation
|
||||||
|
39
deps/libsodium/.github/workflows/dotnet-core.yml
vendored
39
deps/libsodium/.github/workflows/dotnet-core.yml
vendored
@ -28,13 +28,13 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=x86_64-linux-gnu.2.17
|
zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu.2.17 -Dcpu=sandybridge
|
||||||
- name: tests
|
- name: tests
|
||||||
run: cd zig-out/bin && ./run.sh
|
run: cd zig-out/bin && ./run.sh
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
@ -46,12 +46,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- name: Fix ARM support
|
|
||||||
run: |
|
|
||||||
curl -L https://raw.githubusercontent.com/ziglang/zig/master/lib/libc/glibc/sysdeps/arm/arm-features.h | sudo tee /opt/hostedtoolcache/zig/zig-linux-x86_64-*/x64/lib/libc/glibc/sysdeps/arm/sysdep.h >/dev/null
|
|
||||||
- name: Set up emulation environment
|
- name: Set up emulation environment
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
@ -64,7 +61,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=arm-linux-gnueabihf.2.23
|
zig build -Doptimize=ReleaseFast -Dtarget=arm-linux-gnueabihf.2.23 -Dcpu=baseline
|
||||||
- name: tests
|
- name: tests
|
||||||
run: |
|
run: |
|
||||||
cd zig-out/bin && env LD_LIBRARY_PATH=/usr/arm-linux-gnueabihf/lib ./run.sh
|
cd zig-out/bin && env LD_LIBRARY_PATH=/usr/arm-linux-gnueabihf/lib ./run.sh
|
||||||
@ -77,9 +74,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- name: Set up emulation environment
|
- name: Set up emulation environment
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
@ -92,7 +89,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=aarch64-linux-gnu.2.23
|
zig build -Doptimize=ReleaseFast -Dtarget=aarch64-linux-gnu.2.23 -Dcpu=baseline
|
||||||
- name: tests
|
- name: tests
|
||||||
run: |
|
run: |
|
||||||
cd zig-out/bin && env LD_LIBRARY_PATH=/usr/aarch64-linux-gnu/lib ./run.sh
|
cd zig-out/bin && env LD_LIBRARY_PATH=/usr/aarch64-linux-gnu/lib ./run.sh
|
||||||
@ -111,13 +108,13 @@ jobs:
|
|||||||
apk update
|
apk update
|
||||||
apk add alpine-sdk ca-certificates xz
|
apk add alpine-sdk ca-certificates xz
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=x86_64-linux-musl
|
zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl -Dcpu=sandybridge
|
||||||
- name: tests
|
- name: tests
|
||||||
run: |
|
run: |
|
||||||
cd zig-out/bin && ./run.sh
|
cd zig-out/bin && ./run.sh
|
||||||
@ -130,13 +127,13 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=arm-linux-musleabihf
|
zig build -Doptimize=ReleaseFast -Dtarget=arm-linux-musleabihf -Dcpu=baseline
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-linux-musl-arm
|
name: build-linux-musl-arm
|
||||||
@ -146,13 +143,13 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Zig
|
- name: Install Zig
|
||||||
uses: goto-bus-stop/setup-zig@869a4299cf8ac7db4ebffaec36ad82a682f88acb
|
uses: goto-bus-stop/setup-zig@6fede2f0550d71291c0accf2834b216e69a2d67a
|
||||||
with:
|
with:
|
||||||
version: 0.10.1
|
version: 0.11.0
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
zig build -Drelease-fast -Dtarget=aarch64-linux-musl
|
zig build -Doptimize=ReleaseFast -Dtarget=aarch64-linux-musl -Dcpu=baseline
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-linux-musl-arm64
|
name: build-linux-musl-arm64
|
||||||
|
5
deps/libsodium/.gitignore
vendored
5
deps/libsodium/.gitignore
vendored
@ -80,6 +80,8 @@ test-driver
|
|||||||
test/default/*.asm.js
|
test/default/*.asm.js
|
||||||
test/default/*.res
|
test/default/*.res
|
||||||
test/default/*.trs
|
test/default/*.trs
|
||||||
|
test/default/aead_aegis128l
|
||||||
|
test/default/aead_aegis256
|
||||||
test/default/aead_aes256gcm
|
test/default/aead_aes256gcm
|
||||||
test/default/aead_aes256gcm2
|
test/default/aead_aes256gcm2
|
||||||
test/default/aead_chacha20poly1305
|
test/default/aead_chacha20poly1305
|
||||||
@ -117,6 +119,7 @@ test/default/generichash3
|
|||||||
test/default/hash
|
test/default/hash
|
||||||
test/default/hash3
|
test/default/hash3
|
||||||
test/default/kdf
|
test/default/kdf
|
||||||
|
test/default/kdf_hkdf
|
||||||
test/default/keygen
|
test/default/keygen
|
||||||
test/default/kx
|
test/default/kx
|
||||||
test/default/metamorphic
|
test/default/metamorphic
|
||||||
@ -143,7 +146,7 @@ test/default/secretbox7
|
|||||||
test/default/secretbox8
|
test/default/secretbox8
|
||||||
test/default/secretbox_easy
|
test/default/secretbox_easy
|
||||||
test/default/secretbox_easy2
|
test/default/secretbox_easy2
|
||||||
test/default/secretstream
|
test/default/secretstream_xchacha20poly1305
|
||||||
test/default/shorthash
|
test/default/shorthash
|
||||||
test/default/sign
|
test/default/sign
|
||||||
test/default/siphashx24
|
test/default/siphashx24
|
||||||
|
18
deps/libsodium/CITATION.cff
vendored
Normal file
18
deps/libsodium/CITATION.cff
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
cff-version: 1.2.0
|
||||||
|
title: libsodium
|
||||||
|
message: >-
|
||||||
|
If you use this software, please cite it using the
|
||||||
|
metadata from this file.
|
||||||
|
type: software
|
||||||
|
authors:
|
||||||
|
- given-names: Frank
|
||||||
|
family-names: Denis
|
||||||
|
orcid: 'https://orcid.org/0009-0008-4417-1713'
|
||||||
|
repository-code: 'https://github.com/jedisct1/libsodium'
|
||||||
|
url: 'https://libsodium.org'
|
||||||
|
abstract: 'A modern, portable, easy-to-use cryptographic library.'
|
||||||
|
keywords:
|
||||||
|
- cryptography
|
||||||
|
- library
|
||||||
|
- nacl
|
||||||
|
license: ISC
|
63
deps/libsodium/ChangeLog
vendored
63
deps/libsodium/ChangeLog
vendored
@ -1,3 +1,60 @@
|
|||||||
|
* Version 1.0.19
|
||||||
|
This release includes all the changes from 1.0.18-stable, as well as two
|
||||||
|
additions:
|
||||||
|
|
||||||
|
- New AEADs: AEGIS-128L and AEGIS-256 are now available in the
|
||||||
|
`crypto_aead_aegis128l_*()` and `crypto_aead_aegis256_*()` namespaces.
|
||||||
|
AEGIS is a family of authenticated ciphers for high-performance applications,
|
||||||
|
leveraging hardware AES acceleration on `x86_64` and `aarch64`. In addition
|
||||||
|
to performance, AEGIS ciphers have unique properties making them easier and
|
||||||
|
safer to use than AES-GCM. They can also be used as high-performance MACs.
|
||||||
|
- The HKDF key derivation mechanism, required by many standard protocols, is
|
||||||
|
now available in the `crypto_kdf_hkdf_*()` namespace. It is implemented for
|
||||||
|
the SHA-256 and SHA-512 hash functions.
|
||||||
|
- The `osx.sh` build script was renamed to `macos.sh`.
|
||||||
|
- Support for android-mips was removed.
|
||||||
|
|
||||||
|
* Version 1.0.18-stable
|
||||||
|
- Visual Studio: support for Windows/ARM64 builds has been added.
|
||||||
|
- Visual Studio: AVX512 implementations are enabled on supported CPUs.
|
||||||
|
- Visual Studio: an MSVC 2022 solution was added.
|
||||||
|
- Apple XCFramework: support for VisionOS was added.
|
||||||
|
- Apple XCFranework: support for Catalyst was added.
|
||||||
|
- Apple XCFramework: building the simulators is now optional.
|
||||||
|
- iOS: bitcode is not generated any more, as it was deprecated by Apple.
|
||||||
|
- watchOS: support for arm64 was added.
|
||||||
|
- The Zig toolchain can now be used as a modern build system to replace
|
||||||
|
autoconf/automake/libtool/make/ccache and the compiler. This enables faster
|
||||||
|
compilation times, easier cross compilation, and static libraries optimized
|
||||||
|
for any CPU.
|
||||||
|
- The Zig toolchain is now the recommended way to compile `libsodium`
|
||||||
|
to WebAssembly/WASI(X).
|
||||||
|
- libsodium can now be added as a dependency to Zig projects.
|
||||||
|
- Memory fences were added to remove some gadgets that could be used
|
||||||
|
alongside speculative loads.
|
||||||
|
- The AES-GCM implementation was completely rewritten. It is now faster,
|
||||||
|
and also available on aarch64, including Windows/ARM64.
|
||||||
|
- Compatibility with CET instrumentation / IBT / Shadow Stack was added.
|
||||||
|
- Emscripten: the `crypto_pwhash_*()` functions have been removed from Sumo
|
||||||
|
builds, as they reserve a substantial amount of JavaScript memory, even when
|
||||||
|
not used.
|
||||||
|
- Benchmarks now use `CLOCK_MONOTONIC` if possible.
|
||||||
|
- WebAssembly: tests can now run using Bun, WasmEdge, Wazero, wasm3 and
|
||||||
|
wasmer-js. Support for WAVM and Lucet have been removed, as these projects
|
||||||
|
have reached EOL.
|
||||||
|
- .NET: the minimum supported macOS version is now 1.0.15; this matches
|
||||||
|
Microsoft guidelines.
|
||||||
|
- .NET: all the packages are now built using Zig, on all platforms. This
|
||||||
|
allows us to easily match Microsoft's requirements, including supported glibc
|
||||||
|
versions. However, on x86_64, targets are expected to support at least the
|
||||||
|
AVX instruction set.
|
||||||
|
- .NET: packages for ARM64 are now available.
|
||||||
|
- C23 `memset_explicit()` is now used, when available.
|
||||||
|
- Compilation now uses `-Ofast` or `-O3` instead of `-O2` by default.
|
||||||
|
- Portability improvements to help compile libsodium to modern game consoles.
|
||||||
|
- JavaScript: a default `unhandledRejection` handler is not set any more.
|
||||||
|
- Slightly faster 25519 operations.
|
||||||
|
- OpenBSD: leverage `MAP_CONCEAL`.
|
||||||
|
|
||||||
* Version 1.0.18
|
* Version 1.0.18
|
||||||
- Enterprise versions of Visual Studio are now supported.
|
- Enterprise versions of Visual Studio are now supported.
|
||||||
@ -29,6 +86,12 @@ to be `NULL`.
|
|||||||
- The `-ftree-vectorize` and `-ftree-slp-vectorize` compiler switches are
|
- The `-ftree-vectorize` and `-ftree-slp-vectorize` compiler switches are
|
||||||
now used, if available, for optimized builds.
|
now used, if available, for optimized builds.
|
||||||
|
|
||||||
|
* Version 1.0.17-stable
|
||||||
|
- AVX512 detection has been improved.
|
||||||
|
- A compilation option was added to enable retpoline support.
|
||||||
|
- `-ftls-model=global-dynamic` is now set, if available.
|
||||||
|
- Portability and documentation improvements.
|
||||||
|
|
||||||
* Version 1.0.17
|
* Version 1.0.17
|
||||||
- Bug fix: `sodium_pad()` didn't properly support block sizes >= 256 bytes.
|
- Bug fix: `sodium_pad()` didn't properly support block sizes >= 256 bytes.
|
||||||
- JS/WebAssembly: some old iOS versions can't instantiate the WebAssembly
|
- JS/WebAssembly: some old iOS versions can't instantiate the WebAssembly
|
||||||
|
4
deps/libsodium/Makefile.am
vendored
4
deps/libsodium/Makefile.am
vendored
@ -2,9 +2,6 @@ ACLOCAL_AMFLAGS = -I m4
|
|||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
autogen.sh \
|
autogen.sh \
|
||||||
libsodium.sln \
|
|
||||||
libsodium.vcxproj \
|
|
||||||
libsodium.vcxproj.filters \
|
|
||||||
LICENSE \
|
LICENSE \
|
||||||
README.markdown \
|
README.markdown \
|
||||||
THANKS
|
THANKS
|
||||||
@ -13,7 +10,6 @@ SUBDIRS = \
|
|||||||
builds \
|
builds \
|
||||||
contrib \
|
contrib \
|
||||||
dist-build \
|
dist-build \
|
||||||
msvc-scripts \
|
|
||||||
src \
|
src \
|
||||||
test
|
test
|
||||||
|
|
||||||
|
5
deps/libsodium/Makefile.in
vendored
5
deps/libsodium/Makefile.in
vendored
@ -267,6 +267,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
@ -422,9 +423,6 @@ valgrind_tools = @valgrind_tools@
|
|||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
autogen.sh \
|
autogen.sh \
|
||||||
libsodium.sln \
|
|
||||||
libsodium.vcxproj \
|
|
||||||
libsodium.vcxproj.filters \
|
|
||||||
LICENSE \
|
LICENSE \
|
||||||
README.markdown \
|
README.markdown \
|
||||||
THANKS
|
THANKS
|
||||||
@ -433,7 +431,6 @@ SUBDIRS = \
|
|||||||
builds \
|
builds \
|
||||||
contrib \
|
contrib \
|
||||||
dist-build \
|
dist-build \
|
||||||
msvc-scripts \
|
|
||||||
src \
|
src \
|
||||||
test
|
test
|
||||||
|
|
||||||
|
6
deps/libsodium/appveyor.yml
vendored
6
deps/libsodium/appveyor.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
version: 1.0.18.{build}
|
version: 1.0.19.{build}
|
||||||
|
|
||||||
os: Visual Studio 2017
|
os: Visual Studio 2017
|
||||||
|
|
||||||
@ -20,5 +20,5 @@ init: msbuild /version
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
parallel: true
|
parallel: true
|
||||||
project: libsodium.vcxproj
|
project: ci/appveyor/libsodium.vcxproj
|
||||||
verbosity: minimal
|
verbosity: normal
|
||||||
|
29
deps/libsodium/azure-pipelines.yml
vendored
29
deps/libsodium/azure-pipelines.yml
vendored
@ -5,31 +5,6 @@ trigger:
|
|||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: "wasi"
|
|
||||||
pool:
|
|
||||||
vmImage: "ubuntu-20.04"
|
|
||||||
steps:
|
|
||||||
- script: |
|
|
||||||
sudo apt-get install build-essential curl cmake lld
|
|
||||||
displayName: Install system packages
|
|
||||||
- script: |
|
|
||||||
curl https://get.wasmer.io -sSfL | sh
|
|
||||||
displayName: Install wasmer
|
|
||||||
- script: |
|
|
||||||
curl -sL -o - https://ziglang.org/download/0.10.1/zig-linux-x86_64-0.10.1.tar.xz | tar xJ -f - -C /opt/
|
|
||||||
sudo mv /opt/zig-* /opt/zig
|
|
||||||
export PATH=/opt/zig/bin:/opt/zig:$PATH
|
|
||||||
displayName: Install the Zig SDK
|
|
||||||
- script: |
|
|
||||||
. ~/.wasmer/wasmer.sh
|
|
||||||
dist-build/wasm32-wasi.sh
|
|
||||||
displayName: Compile libsodium
|
|
||||||
- task: PublishBuildArtifacts@1
|
|
||||||
condition: not(canceled())
|
|
||||||
inputs:
|
|
||||||
pathToPublish: libsodium-wasm32-wasi
|
|
||||||
artifactName: libsodium-wasm32-wasi
|
|
||||||
|
|
||||||
- job: "windows"
|
- job: "windows"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "windows-2022"
|
vmImage: "windows-2022"
|
||||||
@ -73,7 +48,7 @@ jobs:
|
|||||||
vmImage: "windows-2019"
|
vmImage: "windows-2019"
|
||||||
steps:
|
steps:
|
||||||
- powershell: |
|
- powershell: |
|
||||||
(New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2022-12-16/msys2-base-x86_64-20221216.sfx.exe", "sfx.exe")
|
(New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2023-07-18/msys2-base-x86_64-20230718.sfx.exe", "sfx.exe")
|
||||||
.\sfx.exe -y -o\
|
.\sfx.exe -y -o\
|
||||||
del sfx.exe
|
del sfx.exe
|
||||||
displayName: Install MSYS2
|
displayName: Install MSYS2
|
||||||
@ -112,7 +87,7 @@ jobs:
|
|||||||
vmImage: "windows-2019"
|
vmImage: "windows-2019"
|
||||||
steps:
|
steps:
|
||||||
- powershell: |
|
- powershell: |
|
||||||
(New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2021-07-25/msys2-base-x86_64-20210725.sfx.exe", "sfx.exe")
|
(New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2023-07-18/msys2-base-x86_64-20230718.sfx.exe", "sfx.exe")
|
||||||
.\sfx.exe -y -o\
|
.\sfx.exe -y -o\
|
||||||
del sfx.exe
|
del sfx.exe
|
||||||
displayName: Install MSYS2
|
displayName: Install MSYS2
|
||||||
|
1243
deps/libsodium/build-aux/config.guess
vendored
1243
deps/libsodium/build-aux/config.guess
vendored
File diff suppressed because it is too large
Load Diff
68
deps/libsodium/build-aux/config.sub
vendored
68
deps/libsodium/build-aux/config.sub
vendored
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# shellcheck disable=SC2006,SC2268 # see below for rationale
|
# shellcheck disable=SC2006,SC2268 # see below for rationale
|
||||||
|
|
||||||
timestamp='2023-01-21'
|
timestamp='2023-07-31'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# This file is free software; you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public License as published by
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -82,7 +82,7 @@ This is free software; see the source for copying conditions. There is NO
|
|||||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
||||||
|
|
||||||
help="
|
help="
|
||||||
Try \`$me --help' for more information."
|
Try '$me --help' for more information."
|
||||||
|
|
||||||
# Parse command line
|
# Parse command line
|
||||||
while test $# -gt 0 ; do
|
while test $# -gt 0 ; do
|
||||||
@ -130,7 +130,7 @@ IFS=$saved_IFS
|
|||||||
# Separate into logical components for further validation
|
# Separate into logical components for further validation
|
||||||
case $1 in
|
case $1 in
|
||||||
*-*-*-*-*)
|
*-*-*-*-*)
|
||||||
echo Invalid configuration \`"$1"\': more than four components >&2
|
echo "Invalid configuration '$1': more than four components" >&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
*-*-*-*)
|
*-*-*-*)
|
||||||
@ -145,7 +145,8 @@ case $1 in
|
|||||||
nto-qnx* | linux-* | uclinux-uclibc* \
|
nto-qnx* | linux-* | uclinux-uclibc* \
|
||||||
| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
|
| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
|
||||||
| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
|
| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
|
||||||
| storm-chaos* | os2-emx* | rtmk-nova* | managarm-*)
|
| storm-chaos* | os2-emx* | rtmk-nova* | managarm-* \
|
||||||
|
| windows-* )
|
||||||
basic_machine=$field1
|
basic_machine=$field1
|
||||||
basic_os=$maybe_os
|
basic_os=$maybe_os
|
||||||
;;
|
;;
|
||||||
@ -943,7 +944,7 @@ $basic_machine
|
|||||||
EOF
|
EOF
|
||||||
IFS=$saved_IFS
|
IFS=$saved_IFS
|
||||||
;;
|
;;
|
||||||
# We use `pc' rather than `unknown'
|
# We use 'pc' rather than 'unknown'
|
||||||
# because (1) that's what they normally are, and
|
# because (1) that's what they normally are, and
|
||||||
# (2) the word "unknown" tends to confuse beginning users.
|
# (2) the word "unknown" tends to confuse beginning users.
|
||||||
i*86 | x86_64)
|
i*86 | x86_64)
|
||||||
@ -1180,7 +1181,7 @@ case $cpu-$vendor in
|
|||||||
case $cpu in
|
case $cpu in
|
||||||
1750a | 580 \
|
1750a | 580 \
|
||||||
| a29k \
|
| a29k \
|
||||||
| aarch64 | aarch64_be \
|
| aarch64 | aarch64c | aarch64_be \
|
||||||
| abacus \
|
| abacus \
|
||||||
| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
|
| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
|
||||||
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
|
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
|
||||||
@ -1205,6 +1206,7 @@ case $cpu-$vendor in
|
|||||||
| i370 | i*86 | i860 | i960 | ia16 | ia64 \
|
| i370 | i*86 | i860 | i960 | ia16 | ia64 \
|
||||||
| ip2k | iq2000 \
|
| ip2k | iq2000 \
|
||||||
| k1om \
|
| k1om \
|
||||||
|
| kvx \
|
||||||
| le32 | le64 \
|
| le32 | le64 \
|
||||||
| lm32 \
|
| lm32 \
|
||||||
| loongarch32 | loongarch64 \
|
| loongarch32 | loongarch64 \
|
||||||
@ -1213,31 +1215,7 @@ case $cpu-$vendor in
|
|||||||
| m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
|
| m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
|
||||||
| m88110 | m88k | maxq | mb | mcore | mep | metag \
|
| m88110 | m88k | maxq | mb | mcore | mep | metag \
|
||||||
| microblaze | microblazeel \
|
| microblaze | microblazeel \
|
||||||
| mips | mipsbe | mipseb | mipsel | mipsle \
|
| mips* \
|
||||||
| mips16 \
|
|
||||||
| mips64 | mips64eb | mips64el \
|
|
||||||
| mips64octeon | mips64octeonel \
|
|
||||||
| mips64orion | mips64orionel \
|
|
||||||
| mips64r5900 | mips64r5900el \
|
|
||||||
| mips64vr | mips64vrel \
|
|
||||||
| mips64vr4100 | mips64vr4100el \
|
|
||||||
| mips64vr4300 | mips64vr4300el \
|
|
||||||
| mips64vr5000 | mips64vr5000el \
|
|
||||||
| mips64vr5900 | mips64vr5900el \
|
|
||||||
| mipsisa32 | mipsisa32el \
|
|
||||||
| mipsisa32r2 | mipsisa32r2el \
|
|
||||||
| mipsisa32r3 | mipsisa32r3el \
|
|
||||||
| mipsisa32r5 | mipsisa32r5el \
|
|
||||||
| mipsisa32r6 | mipsisa32r6el \
|
|
||||||
| mipsisa64 | mipsisa64el \
|
|
||||||
| mipsisa64r2 | mipsisa64r2el \
|
|
||||||
| mipsisa64r3 | mipsisa64r3el \
|
|
||||||
| mipsisa64r5 | mipsisa64r5el \
|
|
||||||
| mipsisa64r6 | mipsisa64r6el \
|
|
||||||
| mipsisa64sb1 | mipsisa64sb1el \
|
|
||||||
| mipsisa64sr71k | mipsisa64sr71kel \
|
|
||||||
| mipsr5900 | mipsr5900el \
|
|
||||||
| mipstx39 | mipstx39el \
|
|
||||||
| mmix \
|
| mmix \
|
||||||
| mn10200 | mn10300 \
|
| mn10200 | mn10300 \
|
||||||
| moxie \
|
| moxie \
|
||||||
@ -1285,7 +1263,7 @@ case $cpu-$vendor in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
|
echo "Invalid configuration '$1': machine '$cpu-$vendor' not recognized" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -1732,7 +1710,7 @@ case $os in
|
|||||||
| hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
|
| hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
|
||||||
| sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
|
| sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
|
||||||
| hiux* | abug | nacl* | netware* | windows* \
|
| hiux* | abug | nacl* | netware* | windows* \
|
||||||
| os9* | macos* | osx* | ios* \
|
| os9* | macos* | osx* | ios* | tvos* | watchos* \
|
||||||
| mpw* | magic* | mmixware* | mon960* | lnews* \
|
| mpw* | magic* | mmixware* | mon960* | lnews* \
|
||||||
| amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
|
| amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
|
||||||
| aos* | aros* | cloudabi* | sortix* | twizzler* \
|
| aos* | aros* | cloudabi* | sortix* | twizzler* \
|
||||||
@ -1758,7 +1736,7 @@ case $os in
|
|||||||
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
|
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
|
||||||
| midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
|
| midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
|
||||||
| nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
|
| nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
|
||||||
| fiwix* | mlibc* )
|
| fiwix* | mlibc* | cos* | mbr* )
|
||||||
;;
|
;;
|
||||||
# This one is extra strict with allowed versions
|
# This one is extra strict with allowed versions
|
||||||
sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
|
sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
|
||||||
@ -1766,11 +1744,11 @@ case $os in
|
|||||||
;;
|
;;
|
||||||
none)
|
none)
|
||||||
;;
|
;;
|
||||||
kernel* )
|
kernel* | msvc* )
|
||||||
# Restricted further below
|
# Restricted further below
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2
|
echo "Invalid configuration '$1': OS '$os' not recognized" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -1785,18 +1763,24 @@ case $kernel-$os in
|
|||||||
;;
|
;;
|
||||||
managarm-mlibc* | managarm-kernel* )
|
managarm-mlibc* | managarm-kernel* )
|
||||||
;;
|
;;
|
||||||
|
windows*-gnu* | windows*-msvc*)
|
||||||
|
;;
|
||||||
-dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* | -mlibc* )
|
-dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* | -mlibc* )
|
||||||
# These are just libc implementations, not actual OSes, and thus
|
# These are just libc implementations, not actual OSes, and thus
|
||||||
# require a kernel.
|
# require a kernel.
|
||||||
echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2
|
echo "Invalid configuration '$1': libc '$os' needs explicit kernel." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
-kernel* )
|
-kernel* )
|
||||||
echo "Invalid configuration \`$1': \`$os' needs explicit kernel." 1>&2
|
echo "Invalid configuration '$1': '$os' needs explicit kernel." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
*-kernel* )
|
*-kernel* )
|
||||||
echo "Invalid configuration \`$1': \`$kernel' does not support \`$os'." 1>&2
|
echo "Invalid configuration '$1': '$kernel' does not support '$os'." 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
*-msvc* )
|
||||||
|
echo "Invalid configuration '$1': '$os' needs 'windows'." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
kfreebsd*-gnu* | kopensolaris*-gnu*)
|
kfreebsd*-gnu* | kopensolaris*-gnu*)
|
||||||
@ -1809,11 +1793,15 @@ case $kernel-$os in
|
|||||||
;;
|
;;
|
||||||
*-eabi* | *-gnueabi*)
|
*-eabi* | *-gnueabi*)
|
||||||
;;
|
;;
|
||||||
|
none-coff* | none-elf*)
|
||||||
|
# None (no kernel, i.e. freestanding / bare metal),
|
||||||
|
# can be paired with an output format "OS"
|
||||||
|
;;
|
||||||
-*)
|
-*)
|
||||||
# Blank kernel with real OS is always fine.
|
# Blank kernel with real OS is always fine.
|
||||||
;;
|
;;
|
||||||
*-*)
|
*-*)
|
||||||
echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2
|
echo "Invalid configuration '$1': Kernel '$kernel' not known to work with OS '$os'." 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
190
deps/libsodium/build.zig
vendored
190
deps/libsodium/build.zig
vendored
@ -7,49 +7,95 @@ const LibExeObjStep = std.build.LibExeObjStep;
|
|||||||
const Target = std.Target;
|
const Target = std.Target;
|
||||||
|
|
||||||
pub fn build(b: *std.build.Builder) !void {
|
pub fn build(b: *std.build.Builder) !void {
|
||||||
const src_path = "src/libsodium";
|
const root_path = b.pathFromRoot(".");
|
||||||
const src_dir = try fs.Dir.openIterableDir(fs.cwd(), src_path, .{ .no_follow = true });
|
var cwd = try fs.openDirAbsolute(root_path, .{});
|
||||||
|
defer cwd.close();
|
||||||
|
|
||||||
const target = b.standardTargetOptions(.{});
|
const src_path = "src/libsodium";
|
||||||
const mode = b.standardReleaseOptions();
|
const src_dir = try fs.Dir.openIterableDir(cwd, src_path, .{ .no_follow = true });
|
||||||
|
|
||||||
|
var target = b.standardTargetOptions(.{});
|
||||||
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
const enable_benchmarks = b.option(bool, "enable_benchmarks", "Whether tests should be benchmarks.") orelse false;
|
const enable_benchmarks = b.option(bool, "enable_benchmarks", "Whether tests should be benchmarks.") orelse false;
|
||||||
const benchmarks_iterations = b.option(u32, "iterations", "Number of iterations for benchmarks.") orelse 200;
|
const benchmarks_iterations = b.option(u32, "iterations", "Number of iterations for benchmarks.") orelse 200;
|
||||||
|
var build_static = b.option(bool, "static", "Build libsodium as a static library.") orelse true;
|
||||||
|
const build_shared = b.option(bool, "shared", "Build libsodium as a shared library.") orelse true;
|
||||||
|
|
||||||
const shared = b.addSharedLibrary(
|
const build_tests = b.option(bool, "test", "Build the tests (implies -Dstatic=true)") orelse true;
|
||||||
if (target.isWindows()) "sodium_shared" else "sodium",
|
|
||||||
null,
|
|
||||||
.unversioned,
|
|
||||||
);
|
|
||||||
const static = b.addStaticLibrary("sodium", null);
|
|
||||||
shared.strip = true;
|
|
||||||
static.strip = true;
|
|
||||||
|
|
||||||
const libs_ = [_]*LibExeObjStep{ shared, static };
|
if (build_tests) {
|
||||||
const libs = if (target.getOsTag() == .wasi) libs_[1..] else libs_[0..];
|
build_static = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (target.getCpuArch()) {
|
||||||
|
// Features we assume are always available because they won't affect
|
||||||
|
// code generation in files that don't use them.
|
||||||
|
.x86_64 => {
|
||||||
|
target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.aes));
|
||||||
|
target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.pclmul));
|
||||||
|
target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.rdrnd));
|
||||||
|
},
|
||||||
|
.aarch64, .aarch64_be => {
|
||||||
|
target.cpu_features_add.addFeature(@intFromEnum(Target.aarch64.Feature.crypto));
|
||||||
|
// ARM CPUs supported by Windows also support NEON.
|
||||||
|
if (target.isWindows()) {
|
||||||
|
target.cpu_features_add.addFeature(@intFromEnum(Target.aarch64.Feature.neon));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
else => {},
|
||||||
|
}
|
||||||
|
|
||||||
|
const static_lib = b.addStaticLibrary(.{
|
||||||
|
.name = "sodium",
|
||||||
|
.target = target,
|
||||||
|
.optimize = optimize,
|
||||||
|
});
|
||||||
|
const shared_lib = b.addSharedLibrary(.{
|
||||||
|
.name = if (target.isWindows()) "sodium_shared" else "sodium",
|
||||||
|
.target = target,
|
||||||
|
.optimize = optimize,
|
||||||
|
});
|
||||||
|
|
||||||
|
// work out which libraries we are building
|
||||||
|
var libs = std.ArrayList(*LibExeObjStep).init(b.allocator);
|
||||||
|
defer libs.deinit();
|
||||||
|
if (build_static) {
|
||||||
|
try libs.append(static_lib);
|
||||||
|
}
|
||||||
|
if (build_shared) {
|
||||||
|
try libs.append(shared_lib);
|
||||||
|
}
|
||||||
|
|
||||||
const prebuilt_version_file_path = "builds/msvc/version.h";
|
const prebuilt_version_file_path = "builds/msvc/version.h";
|
||||||
const version_file_path = "include/sodium/version.h";
|
const version_file_path = "include/sodium/version.h";
|
||||||
|
|
||||||
if (src_dir.dir.access(version_file_path, .{ .mode = .read_only })) {} else |_| {
|
if (src_dir.dir.access(version_file_path, .{ .mode = .read_only })) {} else |_| {
|
||||||
try fs.cwd().copyFile(prebuilt_version_file_path, src_dir.dir, version_file_path, .{});
|
try cwd.copyFile(prebuilt_version_file_path, src_dir.dir, version_file_path, .{});
|
||||||
}
|
}
|
||||||
|
|
||||||
for (libs) |lib| {
|
for (libs.items) |lib| {
|
||||||
lib.setTarget(target);
|
if (lib.isDynamicLibrary() and
|
||||||
lib.setBuildMode(mode);
|
!(target.isDarwin() or target.isDragonFlyBSD() or target.isFreeBSD() or
|
||||||
lib.install();
|
target.isLinux() or target.isNetBSD() or target.isOpenBSD() or target.isWindows()))
|
||||||
if (mode != .Debug) {
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (optimize != .Debug and !target.isWindows() and !lib.isStaticLibrary()) {
|
||||||
lib.strip = true;
|
lib.strip = true;
|
||||||
}
|
}
|
||||||
|
b.installArtifact(lib);
|
||||||
|
lib.installHeader(src_path ++ "/include/sodium.h", "sodium.h");
|
||||||
|
lib.installHeadersDirectory(src_path ++ "/include/sodium", "sodium");
|
||||||
lib.linkLibC();
|
lib.linkLibC();
|
||||||
|
|
||||||
lib.addIncludePath("src/libsodium/include/sodium");
|
lib.addIncludePath(.{ .path = "src/libsodium/include/sodium" });
|
||||||
lib.defineCMacro("_GNU_SOURCE", "1");
|
lib.defineCMacro("_GNU_SOURCE", "1");
|
||||||
lib.defineCMacro("CONFIGURED", "1");
|
lib.defineCMacro("CONFIGURED", "1");
|
||||||
lib.defineCMacro("DEV_MODE", "1");
|
lib.defineCMacro("DEV_MODE", "1");
|
||||||
lib.defineCMacro("HAVE_ATOMIC_OPS", "1");
|
lib.defineCMacro("HAVE_ATOMIC_OPS", "1");
|
||||||
lib.defineCMacro("HAVE_C11_MEMORY_FENCES", "1");
|
lib.defineCMacro("HAVE_C11_MEMORY_FENCES", "1");
|
||||||
|
lib.defineCMacro("HAVE_CET_H", "1");
|
||||||
lib.defineCMacro("HAVE_GCC_MEMORY_FENCES", "1");
|
lib.defineCMacro("HAVE_GCC_MEMORY_FENCES", "1");
|
||||||
lib.defineCMacro("HAVE_INLINE_ASM", "1");
|
lib.defineCMacro("HAVE_INLINE_ASM", "1");
|
||||||
lib.defineCMacro("HAVE_INTTYPES_H", "1");
|
lib.defineCMacro("HAVE_INTTYPES_H", "1");
|
||||||
@ -92,6 +138,9 @@ pub fn build(b: *std.build.Builder) !void {
|
|||||||
.windows => {
|
.windows => {
|
||||||
lib.defineCMacro("HAVE_RAISE", "1");
|
lib.defineCMacro("HAVE_RAISE", "1");
|
||||||
lib.defineCMacro("HAVE_SYS_PARAM_H", "1");
|
lib.defineCMacro("HAVE_SYS_PARAM_H", "1");
|
||||||
|
if (lib.isStaticLibrary()) {
|
||||||
|
lib.defineCMacro("SODIUM_STATIC", "1");
|
||||||
|
}
|
||||||
},
|
},
|
||||||
.macos => {
|
.macos => {
|
||||||
lib.defineCMacro("ASM_HIDE_SYMBOL", ".private_extern");
|
lib.defineCMacro("ASM_HIDE_SYMBOL", ".private_extern");
|
||||||
@ -141,15 +190,31 @@ pub fn build(b: *std.build.Builder) !void {
|
|||||||
lib.defineCMacro("HAVE_CPUID", "1");
|
lib.defineCMacro("HAVE_CPUID", "1");
|
||||||
lib.defineCMacro("HAVE_MMINTRIN_H", "1");
|
lib.defineCMacro("HAVE_MMINTRIN_H", "1");
|
||||||
lib.defineCMacro("HAVE_EMMINTRIN_H", "1");
|
lib.defineCMacro("HAVE_EMMINTRIN_H", "1");
|
||||||
lib.defineCMacro("HAVE_PMMINTRIN_H", "1");
|
|
||||||
lib.defineCMacro("HAVE_SMMINTRIN_H", "1");
|
const cpu_features = target.getCpuFeatures();
|
||||||
lib.defineCMacro("HAVE_TMMINTRIN_H", "1");
|
const has_sse3 = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.sse3));
|
||||||
lib.defineCMacro("HAVE_WMMINTRIN_H", "1");
|
const has_ssse3 = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.ssse3));
|
||||||
|
const has_sse4_1 = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.sse4_1));
|
||||||
|
const has_avx = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.avx));
|
||||||
|
const has_avx2 = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.avx2));
|
||||||
|
const has_avx512f = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.avx512f));
|
||||||
|
const has_aes = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.aes));
|
||||||
|
const has_pclmul = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.pclmul));
|
||||||
|
const has_rdrnd = cpu_features.isEnabled(@intFromEnum(Target.x86.Feature.rdrnd));
|
||||||
|
|
||||||
|
if (has_sse3) lib.defineCMacro("HAVE_PMMINTRIN_H", "1");
|
||||||
|
if (has_ssse3) lib.defineCMacro("HAVE_TMMINTRIN_H", "1");
|
||||||
|
if (has_sse4_1) lib.defineCMacro("HAVE_SMMINTRIN_H", "1");
|
||||||
|
if (has_avx) lib.defineCMacro("HAVE_AVXINTRIN_H", "1");
|
||||||
|
if (has_avx2) lib.defineCMacro("HAVE_AVX2INTRIN_H", "1");
|
||||||
|
if (has_avx512f) lib.defineCMacro("HAVE_AVX512FINTRIN_H", "1");
|
||||||
|
if (has_aes and has_pclmul) lib.defineCMacro("HAVE_WMMINTRIN_H", "1");
|
||||||
|
if (has_rdrnd) lib.defineCMacro("HAVE_RDRAND", "1");
|
||||||
},
|
},
|
||||||
.aarch64, .aarch64_be => {
|
.aarch64, .aarch64_be => {
|
||||||
const cpu_features = target.getCpuFeatures();
|
const cpu_features = target.getCpuFeatures();
|
||||||
const has_neon = cpu_features.isEnabled(@enumToInt(Target.aarch64.Feature.neon));
|
const has_neon = cpu_features.isEnabled(@intFromEnum(Target.aarch64.Feature.neon));
|
||||||
const has_crypto = cpu_features.isEnabled(@enumToInt(Target.aarch64.Feature.crypto));
|
const has_crypto = cpu_features.isEnabled(@intFromEnum(Target.aarch64.Feature.crypto));
|
||||||
if (has_neon and has_crypto) {
|
if (has_neon and has_crypto) {
|
||||||
lib.defineCMacro("HAVE_ARMCRYPTO", "1");
|
lib.defineCMacro("HAVE_ARMCRYPTO", "1");
|
||||||
}
|
}
|
||||||
@ -169,9 +234,9 @@ pub fn build(b: *std.build.Builder) !void {
|
|||||||
|
|
||||||
switch (target.getCpuArch()) {
|
switch (target.getCpuArch()) {
|
||||||
.x86_64 => {
|
.x86_64 => {
|
||||||
lib.target.cpu_features_add.addFeature(@enumToInt(Target.x86.Feature.sse4_1));
|
lib.target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.sse4_1));
|
||||||
lib.target.cpu_features_add.addFeature(@enumToInt(Target.x86.Feature.aes));
|
lib.target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.aes));
|
||||||
lib.target.cpu_features_add.addFeature(@enumToInt(Target.x86.Feature.pclmul));
|
lib.target.cpu_features_add.addFeature(@intFromEnum(Target.x86.Feature.pclmul));
|
||||||
},
|
},
|
||||||
else => {},
|
else => {},
|
||||||
}
|
}
|
||||||
@ -191,47 +256,50 @@ pub fn build(b: *std.build.Builder) !void {
|
|||||||
});
|
});
|
||||||
} else if (mem.endsWith(u8, name, ".S")) {
|
} else if (mem.endsWith(u8, name, ".S")) {
|
||||||
const full_path = try fmt.allocPrint(allocator, "{s}/{s}", .{ src_path, entry.path });
|
const full_path = try fmt.allocPrint(allocator, "{s}/{s}", .{ src_path, entry.path });
|
||||||
lib.addAssemblyFile(full_path);
|
lib.addAssemblyFile(.{ .path = full_path });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const test_path = "test/default";
|
const test_path = "test/default";
|
||||||
const out_bin_path = "zig-out/bin";
|
const out_bin_path = "zig-out/bin";
|
||||||
const test_dir = try fs.Dir.openIterableDir(fs.cwd(), test_path, .{ .no_follow = true });
|
const test_dir = try fs.Dir.openIterableDir(cwd, test_path, .{ .no_follow = true });
|
||||||
fs.Dir.makePath(fs.cwd(), out_bin_path) catch {};
|
fs.Dir.makePath(cwd, out_bin_path) catch {};
|
||||||
const out_bin_dir = try fs.Dir.openDir(fs.cwd(), out_bin_path, .{});
|
const out_bin_dir = try fs.Dir.openDir(cwd, out_bin_path, .{});
|
||||||
try test_dir.dir.copyFile("run.sh", out_bin_dir, "run.sh", .{});
|
try test_dir.dir.copyFile("run.sh", out_bin_dir, "run.sh", .{});
|
||||||
var allocator = heap.page_allocator;
|
var allocator = heap.page_allocator;
|
||||||
var walker = try test_dir.walk(allocator);
|
var walker = try test_dir.walk(allocator);
|
||||||
while (try walker.next()) |entry| {
|
if (build_tests) {
|
||||||
const name = entry.basename;
|
while (try walker.next()) |entry| {
|
||||||
if (mem.endsWith(u8, name, ".exp")) {
|
const name = entry.basename;
|
||||||
try test_dir.dir.copyFile(name, out_bin_dir, name, .{});
|
if (mem.endsWith(u8, name, ".exp")) {
|
||||||
continue;
|
try test_dir.dir.copyFile(name, out_bin_dir, name, .{});
|
||||||
}
|
continue;
|
||||||
if (!mem.endsWith(u8, name, ".c")) {
|
}
|
||||||
continue;
|
if (!mem.endsWith(u8, name, ".c")) {
|
||||||
}
|
continue;
|
||||||
const exe_name = name[0 .. name.len - 2];
|
}
|
||||||
var exe = b.addExecutable(exe_name, null);
|
const exe_name = name[0 .. name.len - 2];
|
||||||
exe.setTarget(target);
|
var exe = b.addExecutable(.{
|
||||||
exe.setBuildMode(mode);
|
.name = exe_name,
|
||||||
exe.linkLibC();
|
.target = target,
|
||||||
exe.want_lto = false;
|
.optimize = optimize,
|
||||||
exe.strip = true;
|
});
|
||||||
exe.linkLibrary(static);
|
exe.linkLibC();
|
||||||
exe.addIncludePath("src/libsodium/include");
|
exe.strip = true;
|
||||||
exe.addIncludePath("test/quirks");
|
exe.linkLibrary(static_lib);
|
||||||
const full_path = try fmt.allocPrint(allocator, "{s}/{s}", .{ test_path, entry.path });
|
exe.addIncludePath(.{ .path = "src/libsodium/include" });
|
||||||
exe.addCSourceFiles(&.{full_path}, &.{});
|
exe.addIncludePath(.{ .path = "test/quirks" });
|
||||||
|
const full_path = try fmt.allocPrint(allocator, "{s}/{s}", .{ test_path, entry.path });
|
||||||
|
exe.addCSourceFiles(&.{full_path}, &.{});
|
||||||
|
|
||||||
if (enable_benchmarks) {
|
if (enable_benchmarks) {
|
||||||
exe.defineCMacro("BENCHMARKS", "1");
|
exe.defineCMacro("BENCHMARKS", "1");
|
||||||
var buf: [16]u8 = undefined;
|
var buf: [16]u8 = undefined;
|
||||||
exe.defineCMacro("ITERATIONS", std.fmt.bufPrintIntToSlice(&buf, benchmarks_iterations, 10, .lower, .{}));
|
exe.defineCMacro("ITERATIONS", std.fmt.bufPrintIntToSlice(&buf, benchmarks_iterations, 10, .lower, .{}));
|
||||||
}
|
}
|
||||||
|
|
||||||
exe.install();
|
b.installArtifact(exe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
9
deps/libsodium/builds/Makefile.am
vendored
9
deps/libsodium/builds/Makefile.am
vendored
@ -69,4 +69,11 @@ EXTRA_DIST = \
|
|||||||
msvc/vs2019/libsodium/libsodium.xml \
|
msvc/vs2019/libsodium/libsodium.xml \
|
||||||
msvc/vs2019/libsodium.import.props \
|
msvc/vs2019/libsodium.import.props \
|
||||||
msvc/vs2019/libsodium.import.xml \
|
msvc/vs2019/libsodium.import.xml \
|
||||||
msvc/vs2019/libsodium.sln
|
msvc/vs2022/libsodium.sln \
|
||||||
|
msvc/vs2022/libsodium/libsodium.props \
|
||||||
|
msvc/vs2022/libsodium/libsodium.vcxproj \
|
||||||
|
msvc/vs2022/libsodium/libsodium.vcxproj.filters \
|
||||||
|
msvc/vs2022/libsodium/libsodium.xml \
|
||||||
|
msvc/vs2022/libsodium.import.props \
|
||||||
|
msvc/vs2022/libsodium.import.xml \
|
||||||
|
msvc/vs2022/libsodium.sln
|
||||||
|
10
deps/libsodium/builds/Makefile.in
vendored
10
deps/libsodium/builds/Makefile.in
vendored
@ -146,6 +146,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
@ -369,7 +370,14 @@ EXTRA_DIST = \
|
|||||||
msvc/vs2019/libsodium/libsodium.xml \
|
msvc/vs2019/libsodium/libsodium.xml \
|
||||||
msvc/vs2019/libsodium.import.props \
|
msvc/vs2019/libsodium.import.props \
|
||||||
msvc/vs2019/libsodium.import.xml \
|
msvc/vs2019/libsodium.import.xml \
|
||||||
msvc/vs2019/libsodium.sln
|
msvc/vs2022/libsodium.sln \
|
||||||
|
msvc/vs2022/libsodium/libsodium.props \
|
||||||
|
msvc/vs2022/libsodium/libsodium.vcxproj \
|
||||||
|
msvc/vs2022/libsodium/libsodium.vcxproj.filters \
|
||||||
|
msvc/vs2022/libsodium/libsodium.xml \
|
||||||
|
msvc/vs2022/libsodium.import.props \
|
||||||
|
msvc/vs2022/libsodium.import.xml \
|
||||||
|
msvc/vs2022/libsodium.sln
|
||||||
|
|
||||||
all: all-am
|
all: all-am
|
||||||
|
|
||||||
|
23
deps/libsodium/builds/msvc/properties/ARM64.props
vendored
Normal file
23
deps/libsodium/builds/msvc/properties/ARM64.props
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<_PropertySheetDisplayName>ARM64 Settings</_PropertySheetDisplayName>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemDefinitionGroup>
|
||||||
|
<ClCompile>
|
||||||
|
<PreprocessorDefinitions>WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
</ClCompile>
|
||||||
|
<ResourceCompile>
|
||||||
|
<PreprocessorDefinitions>ARM64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
</ResourceCompile>
|
||||||
|
<Link>
|
||||||
|
<TargetMachine>MachineARM64</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
<Lib>
|
||||||
|
<AdditionalOptions>/MACHINE:ARM64 %(AdditionalOptions)</AdditionalOptions>
|
||||||
|
</Lib>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
|
</Project>
|
10
deps/libsodium/builds/msvc/resource.rc
vendored
10
deps/libsodium/builds/msvc/resource.rc
vendored
@ -4,14 +4,16 @@
|
|||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
|
|
||||||
//specify the version numbers for the dll's
|
//specify the version numbers for the dll's
|
||||||
#define LIBSODIUM_VERSION_STRING "1.0.18.0"
|
#define LIBSODIUM_VERSION_STRING "1.0.19.0"
|
||||||
#define LIBSODIUM_VERSION_BIN 1,0,18,0
|
#define LIBSODIUM_VERSION_BIN 1,0,19,0
|
||||||
|
|
||||||
//specify the product name for the dlls based on the platform we are compiling for
|
//specify the product name for the dlls based on the platform we are compiling for
|
||||||
#if defined(x64)
|
#if defined(x64)
|
||||||
#define LIBSODIUM_PRODUCT_NAME "libsodium (x64)"
|
#define LIBSODIUM_PRODUCT_NAME "libsodium (x64)"
|
||||||
#elif defined(Win32)
|
#elif defined(Win32)
|
||||||
#define LIBSODIUM_PRODUCT_NAME "libsodium (x86)"
|
#define LIBSODIUM_PRODUCT_NAME "libsodium (x86)"
|
||||||
|
#elif defined(ARM64)
|
||||||
|
#define LIBSODIUM_PRODUCT_NAME "libsodium (arm64)"
|
||||||
#else
|
#else
|
||||||
#define LIBSODIUM_PRODUCT_NAME "libsodium"
|
#define LIBSODIUM_PRODUCT_NAME "libsodium"
|
||||||
#endif
|
#endif
|
||||||
@ -44,10 +46,10 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "The Sodium crypto library (libsodium) "
|
VALUE "FileDescription", "The Sodium crypto library (libsodium)"
|
||||||
VALUE "FileVersion", LIBSODIUM_VERSION_STRING
|
VALUE "FileVersion", LIBSODIUM_VERSION_STRING
|
||||||
VALUE "InternalName", "libsodium"
|
VALUE "InternalName", "libsodium"
|
||||||
VALUE "LegalCopyright", "Copyright (c) 2013-2019 The libsodium authors."
|
VALUE "LegalCopyright", "Copyright (c) 2013-2023 The libsodium authors."
|
||||||
VALUE "OriginalFilename", "libsodium.dll"
|
VALUE "OriginalFilename", "libsodium.dll"
|
||||||
VALUE "ProductName", LIBSODIUM_PRODUCT_NAME
|
VALUE "ProductName", LIBSODIUM_PRODUCT_NAME
|
||||||
VALUE "ProductVersion", LIBSODIUM_VERSION_STRING
|
VALUE "ProductVersion", LIBSODIUM_VERSION_STRING
|
||||||
|
7
deps/libsodium/builds/msvc/version.h
vendored
7
deps/libsodium/builds/msvc/version.h
vendored
@ -4,10 +4,11 @@
|
|||||||
|
|
||||||
#include "export.h"
|
#include "export.h"
|
||||||
|
|
||||||
#define SODIUM_VERSION_STRING "1.0.18"
|
#define SODIUM_VERSION_STRING "1.0.19"
|
||||||
|
|
||||||
|
#define SODIUM_LIBRARY_VERSION_MAJOR 26
|
||||||
|
#define SODIUM_LIBRARY_VERSION_MINOR 1
|
||||||
|
|
||||||
#define SODIUM_LIBRARY_VERSION_MAJOR 10
|
|
||||||
#define SODIUM_LIBRARY_VERSION_MINOR 3
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,50 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +67,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +104,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +165,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +202,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +227,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +244,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +253,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +264,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +315,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,50 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +67,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +104,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +165,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +202,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +227,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +244,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +253,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +264,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +315,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,50 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +67,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +104,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +165,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +202,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +227,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +244,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +253,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +264,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +315,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,50 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +67,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +104,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +165,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +202,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +227,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +244,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +253,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +264,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +315,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,50 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +67,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +104,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +165,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +202,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +227,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +244,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +253,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +264,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +315,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,74 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugDLL|ARM64">
|
||||||
|
<Configuration>DebugDLL</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
<ProjectConfiguration Include="ReleaseDLL|ARM64">
|
||||||
<Configuration>DebugLTCG</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>ARM64</Platform>
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLIB|ARM64">
|
||||||
|
<Configuration>DebugLIB</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|ARM64">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|ARM64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|ARM64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +91,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +128,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +189,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +226,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +251,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +268,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +277,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +288,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +339,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
18
deps/libsodium/builds/msvc/vs2022/libsodium.sln
vendored
18
deps/libsodium/builds/msvc/vs2022/libsodium.sln
vendored
@ -9,42 +9,60 @@ Global
|
|||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
DynDebug|Win32 = DynDebug|Win32
|
DynDebug|Win32 = DynDebug|Win32
|
||||||
DynDebug|x64 = DynDebug|x64
|
DynDebug|x64 = DynDebug|x64
|
||||||
|
DynDebug|ARM64 = DynDebug|ARM64
|
||||||
DynRelease|Win32 = DynRelease|Win32
|
DynRelease|Win32 = DynRelease|Win32
|
||||||
DynRelease|x64 = DynRelease|x64
|
DynRelease|x64 = DynRelease|x64
|
||||||
|
DynRelease|ARM64 = DynRelease|ARM64
|
||||||
LtcgDebug|Win32 = LtcgDebug|Win32
|
LtcgDebug|Win32 = LtcgDebug|Win32
|
||||||
LtcgDebug|x64 = LtcgDebug|x64
|
LtcgDebug|x64 = LtcgDebug|x64
|
||||||
|
LtcgDebug|ARM64 = LtcgDebug|ARM64
|
||||||
LtcgRelease|Win32 = LtcgRelease|Win32
|
LtcgRelease|Win32 = LtcgRelease|Win32
|
||||||
LtcgRelease|x64 = LtcgRelease|x64
|
LtcgRelease|x64 = LtcgRelease|x64
|
||||||
|
LtcgRelease|ARM64 = LtcgRelease|ARM64
|
||||||
StaticDebug|Win32 = StaticDebug|Win32
|
StaticDebug|Win32 = StaticDebug|Win32
|
||||||
StaticDebug|x64 = StaticDebug|x64
|
StaticDebug|x64 = StaticDebug|x64
|
||||||
|
StaticDebug|ARM64 = StaticDebug|ARM64
|
||||||
StaticRelease|Win32 = StaticRelease|Win32
|
StaticRelease|Win32 = StaticRelease|Win32
|
||||||
StaticRelease|x64 = StaticRelease|x64
|
StaticRelease|x64 = StaticRelease|x64
|
||||||
|
StaticRelease|ARM64 = StaticRelease|ARM64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|Win32.ActiveCfg = DebugDLL|Win32
|
{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|Win32.Build.0 = DebugDLL|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|x64.ActiveCfg = DebugDLL|x64
|
{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}.DynDebug|x64.Build.0 = DebugDLL|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|ARM64.ActiveCfg = DebugDLL|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynDebug|ARM64.Build.0 = DebugDLL|ARM64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|Win32.ActiveCfg = ReleaseDLL|Win32
|
{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|Win32.Build.0 = ReleaseDLL|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|x64.ActiveCfg = ReleaseDLL|x64
|
{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}.DynRelease|x64.Build.0 = ReleaseDLL|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|ARM64.ActiveCfg = ReleaseDLL|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.DynRelease|ARM64.Build.0 = ReleaseDLL|ARM64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|Win32.ActiveCfg = DebugLTCG|Win32
|
{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|Win32.Build.0 = DebugLTCG|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|x64.ActiveCfg = DebugLTCG|x64
|
{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}.LtcgDebug|x64.Build.0 = DebugLTCG|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|ARM64.ActiveCfg = DebugLTCG|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgDebug|ARM64.Build.0 = DebugLTCG|ARM64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|Win32.ActiveCfg = ReleaseLTCG|Win32
|
{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|Win32.Build.0 = ReleaseLTCG|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|x64.ActiveCfg = ReleaseLTCG|x64
|
{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}.LtcgRelease|x64.Build.0 = ReleaseLTCG|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|ARM64.ActiveCfg = ReleaseLTCG|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.LtcgRelease|ARM64.Build.0 = ReleaseLTCG|ARM64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|Win32.ActiveCfg = DebugLIB|Win32
|
{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|Win32.Build.0 = DebugLIB|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|x64.ActiveCfg = DebugLIB|x64
|
{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}.StaticDebug|x64.Build.0 = DebugLIB|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|ARM64.ActiveCfg = DebugLIB|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticDebug|ARM64.Build.0 = DebugLIB|ARM64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|Win32.ActiveCfg = ReleaseLIB|Win32
|
{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|Win32.Build.0 = ReleaseLIB|Win32
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.ActiveCfg = ReleaseLIB|x64
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.ActiveCfg = ReleaseLIB|x64
|
||||||
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.Build.0 = ReleaseLIB|x64
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|x64.Build.0 = ReleaseLIB|x64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|ARM64.ActiveCfg = ReleaseLIB|ARM64
|
||||||
|
{A185B162-6CB6-4502-B03F-B56F7699A8D9}.StaticRelease|ARM64.Build.0 = ReleaseLIB|ARM64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
@ -10,50 +11,74 @@
|
|||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugDLL|ARM64">
|
||||||
|
<Configuration>DebugDLL</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
<ProjectConfiguration Include="ReleaseDLL|ARM64">
|
||||||
<Configuration>DebugLTCG</Configuration>
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>ARM64</Platform>
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
<ProjectConfiguration Include="DebugLIB|Win32">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
<ProjectConfiguration Include="DebugLIB|x64">
|
||||||
<Configuration>DebugLIB</Configuration>
|
<Configuration>DebugLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLIB|ARM64">
|
||||||
|
<Configuration>DebugLIB</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
<ProjectConfiguration Include="ReleaseLIB|x64">
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLIB|ARM64">
|
||||||
|
<Configuration>ReleaseLIB</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|Win32">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|x64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugLTCG|ARM64">
|
||||||
|
<Configuration>DebugLTCG</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseLTCG|ARM64">
|
||||||
|
<Configuration>ReleaseLTCG</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +91,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
@ -113,13 +128,15 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
@ -172,14 +189,25 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
@ -198,9 +226,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
@ -223,6 +251,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
@ -239,6 +268,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
@ -247,6 +277,7 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
@ -257,9 +288,11 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
@ -306,6 +339,16 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
@ -132,8 +132,8 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
<Filter>crypto_pwhash\scryptsalsa208sha256\sse</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\sodium\verify.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
<Filter>crypto_verify\sodium</Filter>
|
<Filter>crypto_verify</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
<Filter>crypto_auth</Filter>
|
<Filter>crypto_auth</Filter>
|
||||||
@ -153,6 +153,12 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
<Filter>crypto_kdf\blake2b</Filter>
|
<Filter>crypto_kdf\blake2b</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>crypto_kdf\hkdf</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
<Filter>crypto_shorthash</Filter>
|
<Filter>crypto_shorthash</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -309,14 +315,44 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
<Filter>crypto_hash\sha256\cp</Filter>
|
<Filter>crypto_hash\sha256\cp</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
<Filter>crypto_aead\xchacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\xchacha20poly1305</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>crypto_aead\aes256gcm</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
<Filter>crypto_aead\aes256gcm\aesni</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
<Filter>crypto_aead\chacha20poly1305\sodium</Filter>
|
<Filter>crypto_aead\aes256gcm\armcrypto</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>crypto_aead\chacha20poly1305</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
<Filter>crypto_secretstream\xchacha20poly1305</Filter>
|
||||||
@ -333,6 +369,9 @@
|
|||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
<Filter>crypto_core\hsalsa20\ref2</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>crypto_core\softaes</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
<ClCompile Include="..\..\..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
<Filter>crypto_core\ed25519</Filter>
|
<Filter>crypto_core\ed25519</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -383,15 +422,15 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\core.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>include\sodium</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\export.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -458,6 +497,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -506,6 +548,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -530,6 +575,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>include\sodium</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
<Filter>include\sodium</Filter>
|
<Filter>include\sodium</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -560,6 +608,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -569,6 +620,9 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>include\sodium\private</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
<Filter>include\sodium\private</Filter>
|
<Filter>include\sodium\private</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -707,6 +761,36 @@
|
|||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
<Filter>crypto_stream\salsa20\xmm6</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis128l</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>crypto_aead\aegis256</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
<ClInclude Include="..\..\..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
<Filter>crypto_core\ed25519\ref10\fe_25_5</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -736,24 +820,27 @@
|
|||||||
<Filter Include="crypto_aead">
|
<Filter Include="crypto_aead">
|
||||||
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
<UniqueIdentifier>{a6837e41-3751-38c9-bb90-dd59d5f4af7b}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis128l">
|
||||||
|
<UniqueIdentifier>{9e2a023d-fef1-3231-90ba-9a0ffc9bc9ab}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aegis256">
|
||||||
|
<UniqueIdentifier>{6897a4cc-0091-3970-b712-c0ac75c16b67}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm">
|
<Filter Include="crypto_aead\aes256gcm">
|
||||||
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
<UniqueIdentifier>{3e53394c-b59c-30cc-ae69-a4f46f9edfa3}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\aes256gcm\aesni">
|
<Filter Include="crypto_aead\aes256gcm\aesni">
|
||||||
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
<UniqueIdentifier>{7eb51140-a50f-3f50-b379-83677a82496c}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_aead\aes256gcm\armcrypto">
|
||||||
|
<UniqueIdentifier>{507bb9aa-b65c-3034-946b-bcd375b7deaa}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305">
|
<Filter Include="crypto_aead\chacha20poly1305">
|
||||||
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
<UniqueIdentifier>{1f4d6dd1-517f-3eeb-b974-2304ada5e67a}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\chacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{b145288f-68ad-3e79-93cb-e36537b20e26}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305">
|
<Filter Include="crypto_aead\xchacha20poly1305">
|
||||||
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
<UniqueIdentifier>{3122f223-e6c2-3ab1-ad85-ca289b47419e}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_aead\xchacha20poly1305\sodium">
|
|
||||||
<UniqueIdentifier>{2720c2c8-c517-356e-83ed-c2997ab782c3}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="crypto_auth">
|
<Filter Include="crypto_auth">
|
||||||
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
<UniqueIdentifier>{0a3af0f3-56f7-3551-a64e-6284feccc423}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -805,6 +892,9 @@
|
|||||||
<Filter Include="crypto_core\salsa\ref">
|
<Filter Include="crypto_core\salsa\ref">
|
||||||
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
<UniqueIdentifier>{eb259fd9-56f0-32db-a903-6bc1549a7326}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_core\softaes">
|
||||||
|
<UniqueIdentifier>{05997596-e3d7-3bf1-ad4d-39e4c5fd56f6}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_generichash">
|
<Filter Include="crypto_generichash">
|
||||||
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
<UniqueIdentifier>{e53b6258-fcdd-34c8-96c5-44510a34a390}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -835,6 +925,9 @@
|
|||||||
<Filter Include="crypto_kdf\blake2b">
|
<Filter Include="crypto_kdf\blake2b">
|
||||||
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
<UniqueIdentifier>{3d42d2a2-b192-33dd-9162-508916414707}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="crypto_kdf\hkdf">
|
||||||
|
<UniqueIdentifier>{baf7d894-9298-391d-8dc2-e4c3010f5ddc}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
<Filter Include="crypto_kx">
|
<Filter Include="crypto_kx">
|
||||||
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
<UniqueIdentifier>{898b6bd5-1360-3a34-adcd-0fade7561685}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -967,9 +1060,6 @@
|
|||||||
<Filter Include="crypto_verify">
|
<Filter Include="crypto_verify">
|
||||||
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
<UniqueIdentifier>{49fb9272-ffe2-3993-b562-b19d5f2c9b40}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="crypto_verify\sodium">
|
|
||||||
<UniqueIdentifier>{80669cf5-3c9c-3c60-b409-9d8fb305bc77}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="include">
|
<Filter Include="include">
|
||||||
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
<UniqueIdentifier>{96da72eb-3aa0-3850-83eb-32788f91e5bd}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
593
deps/libsodium/ci/appveyor/libsodium.vcxproj
vendored
Normal file
593
deps/libsodium/ci/appveyor/libsodium.vcxproj
vendored
Normal file
@ -0,0 +1,593 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="DebugDLL|Win32">
|
||||||
|
<Configuration>DebugDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="DebugDLL|x64">
|
||||||
|
<Configuration>DebugDLL</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="ReleaseDLL|x64">
|
||||||
|
<Configuration>ReleaseDLL</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<RootNamespace>libsodium</RootNamespace>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="msvc-scripts\sodium.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
|
<AdditionalIncludeDirectories>$(SolutionDir)..\..\;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<Optimization>Full</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||||
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<Optimization>Full</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||||
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\crypto_generichash.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\generichash_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kx\crypto_kx.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\crypto_sign.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\sign_ed25519.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\obsolete.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\sign.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\keypair.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\open.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\crypto_secretbox.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\crypto_secretbox_easy.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\xsalsa20poly1305\secretbox_xsalsa20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\xchacha20poly1305\secretbox_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\crypto_pwhash.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\blake2b-long.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-core.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx512f.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ssse3.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\pwhash_argon2i.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\pwhash_argon2id.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-encoding.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_verify\verify.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\crypto_auth.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\crypto_kdf.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphashx24_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash24_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\crypto_scalarmult.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\ristretto255\ref10\scalarmult_ristretto255_ref10.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\ed25519\ref10\scalarmult_ed25519_ref10.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe_frombytes_sandy2x.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_invert.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\randombytes.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\sysrandom\randombytes_sysrandom.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\internal\randombytes_internal_random.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box_easy.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box_seal.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\box_curve25519xsalsa20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xchacha20poly1305\box_curve25519xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xchacha20poly1305\box_seal_curve25519xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\codecs.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\runtime.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\core.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\utils.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\version.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\crypto_stream.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\xchacha20\stream_xchacha20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\stream_salsa20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa2012\stream_salsa2012.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa2012\ref\stream_salsa2012_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa208\stream_salsa208.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa208\ref\stream_salsa208_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\crypto_hash.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha512\hash_sha512.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\softaes\softaes.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-avx2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse41.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\sign_ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa2012.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\utils.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\core.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\export.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash_sha256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_xchacha20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_onetimeauth_poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_ristretto255.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kx.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_32.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_ristretto255.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\runtime.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa208.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa2012.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox_xchacha20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_16.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_chacha20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_xsalsa20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_hsalsa20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_shorthash.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_onetimeauth.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_64.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes_internal_random.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_generichash.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox_xsalsa20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_ed25519.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box_curve25519xsalsa20poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\softaes.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\sse2_64_32.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\asm_cet.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\common.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\mutex.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-ref.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-avx2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-ssse3.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-encoding.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blake2b-long.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-avx512f.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-core.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash_ref.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\consts_namespace.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder_namespace.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_namespace.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna64.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna32.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u4.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u0.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u1.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u8.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\stream_salsa20.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u4.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u0.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u1.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\implementations.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\constants.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\fe.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\base2.h" />
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\base.h" />
|
||||||
|
<ClInclude Include="..\..\builds\msvc\resource.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="..\..\builds\msvc\resource.rc">
|
||||||
|
</ResourceCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
810
deps/libsodium/ci/appveyor/libsodium.vcxproj.filters
vendored
Normal file
810
deps/libsodium/ci/appveyor/libsodium.vcxproj.filters
vendored
Normal file
@ -0,0 +1,810 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\crypto_generichash.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\generichash_blake2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\generichash_blake2b.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kx\crypto_kx.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\crypto_sign.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\sign_ed25519.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\obsolete.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\sign.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\keypair.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\open.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\crypto_secretbox.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\crypto_secretbox_easy.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\xsalsa20poly1305\secretbox_xsalsa20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretbox\xchacha20poly1305\secretbox_xchacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\crypto_pwhash.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\blake2b-long.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-core.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx512f.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ssse3.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\pwhash_argon2i.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\pwhash_argon2id.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-encoding.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_verify\verify.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\crypto_auth.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\crypto_kdf.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_kdf\hkdf\kdf_hkdf_sha512.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphashx24_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash24_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\crypto_scalarmult.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\ristretto255\ref10\scalarmult_ristretto255_ref10.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\ed25519\ref10\scalarmult_ed25519_ref10.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe_frombytes_sandy2x.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_invert.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\randombytes.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\sysrandom\randombytes_sysrandom.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\randombytes\internal\randombytes_internal_random.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box_easy.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box_seal.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\crypto_box.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xsalsa20poly1305\box_curve25519xsalsa20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xchacha20poly1305\box_curve25519xchacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_box\curve25519xchacha20poly1305\box_seal_curve25519xchacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\codecs.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\runtime.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\core.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\utils.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\sodium\version.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\crypto_stream.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\xchacha20\stream_xchacha20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\stream_salsa20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa2012\stream_salsa2012.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa2012\ref\stream_salsa2012_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa208\stream_salsa208.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\salsa208\ref\stream_salsa208_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\crypto_hash.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha512\hash_sha512.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha256\hash_sha256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\xchacha20poly1305\aead_xchacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aead_aegis128l.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aead_aegis256.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\aead_aes256gcm.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\aes256gcm\armcrypto\aead_aes256gcm_armcrypto.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_aead\chacha20poly1305\aead_chacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hchacha20\core_hchacha20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\softaes\softaes.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\core_ristretto255.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-avx2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse41.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_sign\ed25519\ref10\sign_ed25519_ref10.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa2012.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\utils.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aegis256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash_sha512.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\core.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\export.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_shorthash_siphash24.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash_sha256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_xchacha20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_onetimeauth_poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_ristretto255.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kx.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_hash.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_32.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_ristretto255.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_xchacha20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa208.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aegis128l.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes_sysrandom.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\runtime.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_salsa208.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_salsa2012.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox_xchacha20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_16.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_chacha20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_stream_xsalsa20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_hsalsa20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_blake2b.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_curve25519.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_shorthash.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign_ed25519.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_onetimeauth.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_verify_64.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_core_ed25519.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_kdf_hkdf_sha512.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\randombytes_internal_random.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_generichash.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox_xsalsa20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_secretbox.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_scalarmult_ed25519.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_box_curve25519xsalsa20poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_generichash_blake2b.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\softaes.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\sse2_64_32.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\asm_cet.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\common.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\mutex.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\chacha20_ietf_ext.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\include\sodium\private\implementations.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-ref.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-avx2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-ssse3.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-encoding.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blake2b-long.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\blamka-round-avx512f.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\argon2\argon2-core.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash_ref.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\consts_namespace.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder_namespace.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_namespace.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna64.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna32.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\stream_chacha20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u4.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u0.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u1.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\chacha20\dolbeau\u8.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\stream_salsa20.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u4.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u0.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u1.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\u8.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_armcrypto.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_aesni.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_soft.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\aegis128l_common.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis128l\implementations.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_aesni.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_common.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\implementations.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_armcrypto.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_aead\aegis256\aegis256_soft.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\constants.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\fe.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\base2.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\libsodium\crypto_core\ed25519\ref10\fe_51\base.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
5
deps/libsodium/ci/appveyor/msvc-scripts/process.bat
vendored
Executable file
5
deps/libsodium/ci/appveyor/msvc-scripts/process.bat
vendored
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.20/ < ..\..\src\libsodium\include\sodium\version.h.in > tmp
|
||||||
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/28/ < tmp > tmp2
|
||||||
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/0/ < tmp2 > tmp3
|
||||||
|
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > ..\..\src\libsodium\include\sodium\version.h
|
||||||
|
del tmp tmp2 tmp3
|
@ -1,24 +1,25 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets" />
|
<ImportGroup Label="PropertySheets" />
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup />
|
<PropertyGroup />
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||||
<PreprocessorDefinitions>UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PreprocessorDefinitions>NATIVE_LITTLE_ENDIAN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NATIVE_LITTLE_ENDIAN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PreprocessorDefinitions>inline=__inline;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>inline=__inline;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Command>"$(SolutionDir)/msvc-scripts/process.bat"</Command>
|
<Command>"$(SolutionDir)\msvc-scripts\process.bat"</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Message>Process .in files</Message>
|
<Message>Process .in files</Message>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Command>"$(SolutionDir)/test/default/wintest.bat" $(Configuration) $(Platform)</Command>
|
<Command>"$(SolutionDir)..\..\test\default\wintest.bat" $(Configuration) $(Platform)</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Message>Run the test suite</Message>
|
<Message>Run the test suite</Message>
|
679
deps/libsodium/configure
vendored
679
deps/libsodium/configure
vendored
File diff suppressed because it is too large
Load Diff
199
deps/libsodium/configure.ac
vendored
199
deps/libsodium/configure.ac
vendored
@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ([2.69])
|
AC_PREREQ([2.69])
|
||||||
AC_INIT([libsodium],[1.0.18],[https://github.com/jedisct1/libsodium/issues],[libsodium],[https://libsodium.org])
|
AC_INIT([libsodium],[1.0.19],[https://github.com/jedisct1/libsodium/issues],[libsodium],[https://libsodium.org])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_SRCDIR([src/libsodium/sodium/version.c])
|
AC_CONFIG_SRCDIR([src/libsodium/sodium/version.c])
|
||||||
@ -12,10 +12,10 @@ AM_DEP_TRACK
|
|||||||
|
|
||||||
AC_SUBST(VERSION)
|
AC_SUBST(VERSION)
|
||||||
|
|
||||||
SODIUM_LIBRARY_VERSION_MAJOR=10
|
SODIUM_LIBRARY_VERSION_MAJOR=26
|
||||||
SODIUM_LIBRARY_VERSION_MINOR=3
|
SODIUM_LIBRARY_VERSION_MINOR=1
|
||||||
DLL_VERSION=24
|
DLL_VERSION=26
|
||||||
SODIUM_LIBRARY_VERSION=26:0:3
|
SODIUM_LIBRARY_VERSION=27:0:1
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
@ -131,7 +131,7 @@ AM_CONDITIONAL([MINIMAL], [test x$enable_minimal = xyes])
|
|||||||
AC_SUBST(SODIUM_LIBRARY_MINIMAL_DEF)
|
AC_SUBST(SODIUM_LIBRARY_MINIMAL_DEF)
|
||||||
|
|
||||||
AC_ARG_WITH(pthreads, AS_HELP_STRING([--with-pthreads],
|
AC_ARG_WITH(pthreads, AS_HELP_STRING([--with-pthreads],
|
||||||
[use pthreads library, or --without-pthreads to disable threading support.]),
|
[use pthreads library, or --without-pthreads to disable threading support]),
|
||||||
[ ], [withval="yes"])
|
[ ], [withval="yes"])
|
||||||
|
|
||||||
AS_IF([test "x$withval" = "xyes"], [
|
AS_IF([test "x$withval" = "xyes"], [
|
||||||
@ -293,23 +293,6 @@ AS_CASE([$host_os],
|
|||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_MSG_CHECKING(for a broken Xcode version)
|
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
|
|
||||||
#if !defined(__APPLE_CC__) || __APPLE_CC__ != 6000
|
|
||||||
#error Not Apple
|
|
||||||
#endif
|
|
||||||
#if !defined(__clang_major__) || __clang_major__ != 11
|
|
||||||
#error Not Xcode 11
|
|
||||||
#endif
|
|
||||||
]])],
|
|
||||||
[AC_MSG_RESULT(yes)
|
|
||||||
AC_MSG_WARN([Using unsupported Xcode version])
|
|
||||||
AX_CHECK_COMPILE_FLAG([$CFLAGS -fno-stack-check],
|
|
||||||
[CFLAGS="$CFLAGS -fno-stack-check"])
|
|
||||||
],
|
|
||||||
[AC_MSG_RESULT(no)
|
|
||||||
])
|
|
||||||
|
|
||||||
AS_IF([test "x$enable_ssp" != "xno"],[
|
AS_IF([test "x$enable_ssp" != "xno"],[
|
||||||
|
|
||||||
AS_CASE([$host_os],
|
AS_CASE([$host_os],
|
||||||
@ -324,6 +307,7 @@ AS_CASE([$host_os],
|
|||||||
])
|
])
|
||||||
|
|
||||||
AX_CHECK_COMPILE_FLAG([$CFLAGS -Wall], [CWFLAGS="$CFLAGS -Wall"])
|
AX_CHECK_COMPILE_FLAG([$CFLAGS -Wall], [CWFLAGS="$CFLAGS -Wall"])
|
||||||
|
AX_CHECK_COMPILE_FLAG([$CFLAGS -Wno-deprecated-declarations], [CFLAGS="$CFLAGS -Wno-deprecated-declarations"])
|
||||||
AX_CHECK_COMPILE_FLAG([$CFLAGS -Wno-unknown-pragmas], [CFLAGS="$CFLAGS -Wno-unknown-pragmas"])
|
AX_CHECK_COMPILE_FLAG([$CFLAGS -Wno-unknown-pragmas], [CFLAGS="$CFLAGS -Wno-unknown-pragmas"])
|
||||||
|
|
||||||
AC_ARG_VAR([CWFLAGS], [compilation flags for generating extra warnings])
|
AC_ARG_VAR([CWFLAGS], [compilation flags for generating extra warnings])
|
||||||
@ -392,14 +376,101 @@ AC_SUBST(LIBTOOL_DEPS)
|
|||||||
AC_ARG_VAR([AR], [path to the ar utility])
|
AC_ARG_VAR([AR], [path to the ar utility])
|
||||||
AC_CHECK_TOOL([AR], [ar], [ar])
|
AC_CHECK_TOOL([AR], [ar], [ar])
|
||||||
|
|
||||||
dnl Checks for headers
|
dnl Checks for headers and codegen feature flags
|
||||||
|
|
||||||
|
target_cpu_aarch64=no
|
||||||
|
AC_MSG_CHECKING(for ARM64 target)
|
||||||
|
AC_LINK_IFELSE(
|
||||||
|
[AC_LANG_PROGRAM([
|
||||||
|
#ifndef __aarch64__
|
||||||
|
#error Not aarch64
|
||||||
|
#endif
|
||||||
|
#include <arm_neon.h>
|
||||||
|
], [(void) 0])],
|
||||||
|
[AC_MSG_RESULT(yes)
|
||||||
|
target_cpu_aarch64=yes],
|
||||||
|
[AC_MSG_RESULT(no)
|
||||||
|
target_cpu_aarch64=no])
|
||||||
|
|
||||||
AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
||||||
|
|
||||||
|
AS_IF([test "x$target_cpu_aarch64" = "xyes"], [
|
||||||
|
have_armcrypto=no
|
||||||
|
AC_MSG_CHECKING(for ARM crypto instructions set)
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang attribute push(__attribute__((target("neon,crypto,aes"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# pragma GCC target("+simd+crypto")
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_CRYPTO
|
||||||
|
# define __ARM_FEATURE_CRYPTO 1
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_AES
|
||||||
|
# define __ARM_FEATURE_AES 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <arm_neon.h>
|
||||||
|
]], [[
|
||||||
|
int64x2_t x = { 0, 0 };
|
||||||
|
vaeseq_u8(vmovq_n_u8(0), vmovq_n_u8(0));
|
||||||
|
vmull_high_p64(vreinterpretq_p64_s64(x), vreinterpretq_p64_s64(x));
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
(void) 0
|
||||||
|
]])],
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
have_armcrypto=yes
|
||||||
|
],
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
oldcflags="$CFLAGS"
|
||||||
|
AX_CHECK_COMPILE_FLAG([-march=armv8-a+crypto+aes], [
|
||||||
|
CFLAGS="$CFLAGS -march=armv8-a+crypto+aes"
|
||||||
|
AC_MSG_CHECKING(for ARM crypto instructions set with -march=armv8-a+crypto+aes)
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang attribute push(__attribute__((target("neon,crypto,aes"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# pragma GCC target("+simd+crypto")
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_CRYPTO
|
||||||
|
# define __ARM_FEATURE_CRYPTO 1
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_AES
|
||||||
|
# define __ARM_FEATURE_AES 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <arm_neon.h>
|
||||||
|
]], [[
|
||||||
|
int64x2_t x = { 0, 0 };
|
||||||
|
vaeseq_u8(vmovq_n_u8(0), vmovq_n_u8(0));
|
||||||
|
vmull_high_p64(vreinterpretq_p64_s64(x), vreinterpretq_p64_s64(x));
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
(void) 0
|
||||||
|
]])],
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT(yes - with addition of -march=armv8-a+crypto+aes)
|
||||||
|
have_armcrypto=yes
|
||||||
|
CFLAGS_ARMCRYPTO="-march=armv8-a+crypto+aes"
|
||||||
|
],
|
||||||
|
[AC_MSG_RESULT(no)])
|
||||||
|
CFLAGS="$oldcflags"
|
||||||
|
])
|
||||||
|
])
|
||||||
|
AS_IF([test "$have_armcrypto" = "yes"],[AC_DEFINE([HAVE_ARMCRYPTO], [1], [ARM crypto extensions are available])])
|
||||||
|
])
|
||||||
|
|
||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mmmx], [CFLAGS="$CFLAGS -mmmx"])
|
AX_CHECK_COMPILE_FLAG([-mmmx], [CFLAGS="$CFLAGS -mmmx"])
|
||||||
AC_MSG_CHECKING(for MMX instructions set)
|
AC_MSG_CHECKING(for MMX instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("mmx")
|
#pragma GCC target("mmx")
|
||||||
#include <mmintrin.h>
|
#include <mmintrin.h>
|
||||||
]], [[ __m64 x = _mm_setzero_si64(); ]])],
|
]], [[ __m64 x = _mm_setzero_si64(); ]])],
|
||||||
@ -412,7 +483,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-msse2], [CFLAGS="$CFLAGS -msse2"])
|
AX_CHECK_COMPILE_FLAG([-msse2], [CFLAGS="$CFLAGS -msse2"])
|
||||||
AC_MSG_CHECKING(for SSE2 instructions set)
|
AC_MSG_CHECKING(for SSE2 instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("sse2")
|
#pragma GCC target("sse2")
|
||||||
#ifndef __SSE2__
|
#ifndef __SSE2__
|
||||||
# define __SSE2__
|
# define __SSE2__
|
||||||
@ -429,7 +500,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-msse3], [CFLAGS="$CFLAGS -msse3"])
|
AX_CHECK_COMPILE_FLAG([-msse3], [CFLAGS="$CFLAGS -msse3"])
|
||||||
AC_MSG_CHECKING(for SSE3 instructions set)
|
AC_MSG_CHECKING(for SSE3 instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("sse3")
|
#pragma GCC target("sse3")
|
||||||
#include <pmmintrin.h>
|
#include <pmmintrin.h>
|
||||||
]], [[ __m128 x = _mm_addsub_ps(_mm_cvtpd_ps(_mm_setzero_pd()),
|
]], [[ __m128 x = _mm_addsub_ps(_mm_cvtpd_ps(_mm_setzero_pd()),
|
||||||
@ -443,7 +514,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mssse3], [CFLAGS="$CFLAGS -mssse3"])
|
AX_CHECK_COMPILE_FLAG([-mssse3], [CFLAGS="$CFLAGS -mssse3"])
|
||||||
AC_MSG_CHECKING(for SSSE3 instructions set)
|
AC_MSG_CHECKING(for SSSE3 instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("ssse3")
|
#pragma GCC target("ssse3")
|
||||||
#include <tmmintrin.h>
|
#include <tmmintrin.h>
|
||||||
]], [[ __m64 x = _mm_abs_pi32(_m_from_int(0)); ]])],
|
]], [[ __m64 x = _mm_abs_pi32(_m_from_int(0)); ]])],
|
||||||
@ -456,7 +527,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS="$CFLAGS -msse4.1"])
|
AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS="$CFLAGS -msse4.1"])
|
||||||
AC_MSG_CHECKING(for SSE4.1 instructions set)
|
AC_MSG_CHECKING(for SSE4.1 instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("sse4.1")
|
#pragma GCC target("sse4.1")
|
||||||
#include <smmintrin.h>
|
#include <smmintrin.h>
|
||||||
]], [[ __m128i x = _mm_minpos_epu16(_mm_setzero_si128()); ]])],
|
]], [[ __m128i x = _mm_minpos_epu16(_mm_setzero_si128()); ]])],
|
||||||
@ -469,7 +540,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mavx], [CFLAGS="$CFLAGS -mavx"])
|
AX_CHECK_COMPILE_FLAG([-mavx], [CFLAGS="$CFLAGS -mavx"])
|
||||||
AC_MSG_CHECKING(for AVX instructions set)
|
AC_MSG_CHECKING(for AVX instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("avx")
|
#pragma GCC target("avx")
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
]], [[ _mm256_zeroall(); ]])],
|
]], [[ _mm256_zeroall(); ]])],
|
||||||
@ -482,7 +553,7 @@ AS_IF([test "x$EMSCRIPTEN" = "x"], [
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS="$CFLAGS -mavx2"])
|
AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS="$CFLAGS -mavx2"])
|
||||||
AC_MSG_CHECKING(for AVX2 instructions set)
|
AC_MSG_CHECKING(for AVX2 instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("avx2")
|
#pragma GCC target("avx2")
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
]], [[
|
]], [[
|
||||||
@ -494,7 +565,7 @@ return _mm256_movemask_ps(_mm256_cmp_ps(x, y, _CMP_NEQ_OQ));
|
|||||||
AC_DEFINE([HAVE_AVX2INTRIN_H], [1], [AVX2 is available])
|
AC_DEFINE([HAVE_AVX2INTRIN_H], [1], [AVX2 is available])
|
||||||
AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS_AVX2="-mavx2"])
|
AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS_AVX2="-mavx2"])
|
||||||
AC_MSG_CHECKING(if _mm256_broadcastsi128_si256 is correctly defined)
|
AC_MSG_CHECKING(if _mm256_broadcastsi128_si256 is correctly defined)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("avx2")
|
#pragma GCC target("avx2")
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
]], [[ __m256i y = _mm256_broadcastsi128_si256(_mm_setzero_si128()); ]])],
|
]], [[ __m256i y = _mm256_broadcastsi128_si256(_mm_setzero_si128()); ]])],
|
||||||
@ -509,7 +580,7 @@ return _mm256_movemask_ps(_mm256_cmp_ps(x, y, _CMP_NEQ_OQ));
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mavx512f], [CFLAGS="$CFLAGS -mavx512f"])
|
AX_CHECK_COMPILE_FLAG([-mavx512f], [CFLAGS="$CFLAGS -mavx512f"])
|
||||||
AC_MSG_CHECKING(for AVX512F instructions set)
|
AC_MSG_CHECKING(for AVX512F instructions set)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("avx512f")
|
#pragma GCC target("avx512f")
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
]], [[
|
]], [[
|
||||||
@ -542,7 +613,7 @@ __m512i y = _mm512_permutexvar_epi64(_mm512_setr_epi64(0, 1, 4, 5, 2, 3, 6, 7),
|
|||||||
AX_CHECK_COMPILE_FLAG([-maes], [CFLAGS="$CFLAGS -maes"])
|
AX_CHECK_COMPILE_FLAG([-maes], [CFLAGS="$CFLAGS -maes"])
|
||||||
AX_CHECK_COMPILE_FLAG([-mpclmul], [CFLAGS="$CFLAGS -mpclmul"])
|
AX_CHECK_COMPILE_FLAG([-mpclmul], [CFLAGS="$CFLAGS -mpclmul"])
|
||||||
AC_MSG_CHECKING(for AESNI instructions set and PCLMULQDQ)
|
AC_MSG_CHECKING(for AESNI instructions set and PCLMULQDQ)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("aes")
|
#pragma GCC target("aes")
|
||||||
#pragma GCC target("pclmul")
|
#pragma GCC target("pclmul")
|
||||||
#include <wmmintrin.h>
|
#include <wmmintrin.h>
|
||||||
@ -559,7 +630,7 @@ __m512i y = _mm512_permutexvar_epi64(_mm512_setr_epi64(0, 1, 4, 5, 2, 3, 6, 7),
|
|||||||
oldcflags="$CFLAGS"
|
oldcflags="$CFLAGS"
|
||||||
AX_CHECK_COMPILE_FLAG([-mrdrnd], [CFLAGS="$CFLAGS -mrdrnd"])
|
AX_CHECK_COMPILE_FLAG([-mrdrnd], [CFLAGS="$CFLAGS -mrdrnd"])
|
||||||
AC_MSG_CHECKING(for RDRAND)
|
AC_MSG_CHECKING(for RDRAND)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#pragma GCC target("rdrnd")
|
#pragma GCC target("rdrnd")
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
]], [[ unsigned long long x; _rdrand64_step(&x); ]])],
|
]], [[ unsigned long long x; _rdrand64_step(&x); ]])],
|
||||||
@ -572,6 +643,7 @@ __m512i y = _mm512_permutexvar_epi64(_mm512_setr_epi64(0, 1, 4, 5, 2, 3, 6, 7),
|
|||||||
|
|
||||||
])
|
])
|
||||||
|
|
||||||
|
AC_SUBST(CFLAGS_ARMCRYPTO)
|
||||||
AC_SUBST(CFLAGS_MMX)
|
AC_SUBST(CFLAGS_MMX)
|
||||||
AC_SUBST(CFLAGS_SSE2)
|
AC_SUBST(CFLAGS_SSE2)
|
||||||
AC_SUBST(CFLAGS_SSE3)
|
AC_SUBST(CFLAGS_SSE3)
|
||||||
@ -584,7 +656,9 @@ AC_SUBST(CFLAGS_AESNI)
|
|||||||
AC_SUBST(CFLAGS_PCLMUL)
|
AC_SUBST(CFLAGS_PCLMUL)
|
||||||
AC_SUBST(CFLAGS_RDRAND)
|
AC_SUBST(CFLAGS_RDRAND)
|
||||||
|
|
||||||
AC_CHECK_HEADERS([sys/mman.h sys/param.h sys/random.h intrin.h])
|
AC_CHECK_HEADERS([sys/mman.h sys/param.h sys/random.h intrin.h sys/auxv.h])
|
||||||
|
AC_CHECK_HEADERS([CommonCrypto/CommonRandom.h])
|
||||||
|
AC_CHECK_HEADERS([cet.h])
|
||||||
|
|
||||||
AC_MSG_CHECKING([if _xgetbv() is available])
|
AC_MSG_CHECKING([if _xgetbv() is available])
|
||||||
AC_LINK_IFELSE(
|
AC_LINK_IFELSE(
|
||||||
@ -608,7 +682,7 @@ AC_C_BIGENDIAN(
|
|||||||
)
|
)
|
||||||
|
|
||||||
AC_MSG_CHECKING(whether __STDC_LIMIT_MACROS is required)
|
AC_MSG_CHECKING(whether __STDC_LIMIT_MACROS is required)
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
]], [[
|
]], [[
|
||||||
@ -792,23 +866,6 @@ void f(void *x) { __dummy(x); }
|
|||||||
AC_DEFINE([HAVE_WEAK_SYMBOLS], [1], [weak symbols are supported])],
|
AC_DEFINE([HAVE_WEAK_SYMBOLS], [1], [weak symbols are supported])],
|
||||||
[AC_MSG_RESULT(no)])
|
[AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
AC_MSG_CHECKING(if data alignment is required)
|
|
||||||
aligned_access_required=yes
|
|
||||||
AS_CASE([$host_cpu],
|
|
||||||
[i?86|amd64|x86_64|powerpc*|s390*],
|
|
||||||
[aligned_access_required=no],
|
|
||||||
[arm*],
|
|
||||||
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
||||||
#ifndef __ARM_FEATURE_UNALIGNED
|
|
||||||
# error data alignment is required
|
|
||||||
#endif
|
|
||||||
]], [[]])], [aligned_access_required=no], [])]
|
|
||||||
)
|
|
||||||
AS_IF([test "x$aligned_access_required" = "xyes"],
|
|
||||||
[AC_MSG_RESULT(yes)],
|
|
||||||
[AC_MSG_RESULT(no)
|
|
||||||
AC_DEFINE([CPU_UNALIGNED_ACCESS], [1], [unaligned memory access is supported])])
|
|
||||||
|
|
||||||
AC_MSG_CHECKING(if atomic operations are supported)
|
AC_MSG_CHECKING(if atomic operations are supported)
|
||||||
AC_LINK_IFELSE([AC_LANG_PROGRAM([[ ]], [[
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[ ]], [[
|
||||||
static volatile int _sodium_lock;
|
static volatile int _sodium_lock;
|
||||||
@ -820,6 +877,26 @@ __sync_lock_release(&_sodium_lock);
|
|||||||
AC_DEFINE([HAVE_ATOMIC_OPS], [1], [atomic operations are supported])],
|
AC_DEFINE([HAVE_ATOMIC_OPS], [1], [atomic operations are supported])],
|
||||||
[AC_MSG_RESULT(no)])
|
[AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(if C11 memory fences are supported)
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
#include <stdatomic.h>
|
||||||
|
]], [[
|
||||||
|
atomic_thread_fence(memory_order_acquire);
|
||||||
|
]]
|
||||||
|
)],
|
||||||
|
[AC_MSG_RESULT(yes)
|
||||||
|
AC_DEFINE([HAVE_C11_MEMORY_FENCES], [1], [C11 memory fences are supported])],
|
||||||
|
[AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(if gcc memory fences are supported)
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[ ]], [[
|
||||||
|
__atomic_thread_fence(__ATOMIC_ACQUIRE);
|
||||||
|
]]
|
||||||
|
)],
|
||||||
|
[AC_MSG_RESULT(yes)
|
||||||
|
AC_DEFINE([HAVE_GCC_MEMORY_FENCES], [1], [GCC memory fences are supported])],
|
||||||
|
[AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
dnl Checks for functions and headers
|
dnl Checks for functions and headers
|
||||||
|
|
||||||
AC_FUNC_ALLOCA
|
AC_FUNC_ALLOCA
|
||||||
@ -839,12 +916,11 @@ AS_IF([test "x$EMSCRIPTEN" = "x"],[
|
|||||||
#ifdef HAVE_SYS_RANDOM_H
|
#ifdef HAVE_SYS_RANDOM_H
|
||||||
# include <sys/random.h>
|
# include <sys/random.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef __SANITIZE_ADDRESS__
|
|
||||||
# error A recent libasan version on an old system may intercept nonexistent functions
|
|
||||||
#endif
|
|
||||||
]], [[
|
]], [[
|
||||||
unsigned char buf;
|
unsigned char buf;
|
||||||
(void) getrandom((void *) &buf, 1U, 0U);
|
if (&getrandom != NULL) {
|
||||||
|
(void) getrandom((void *) &buf, 1U, 0U);
|
||||||
|
}
|
||||||
]])],
|
]])],
|
||||||
[AC_MSG_RESULT(yes)
|
[AC_MSG_RESULT(yes)
|
||||||
AC_CHECK_FUNCS([getrandom])],
|
AC_CHECK_FUNCS([getrandom])],
|
||||||
@ -860,12 +936,8 @@ unsigned char buf;
|
|||||||
#ifdef HAVE_SYS_RANDOM_H
|
#ifdef HAVE_SYS_RANDOM_H
|
||||||
# include <sys/random.h>
|
# include <sys/random.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef __SANITIZE_ADDRESS__
|
|
||||||
# error A recent libasan version on an old system may intercept nonexistent functions
|
|
||||||
#endif
|
|
||||||
]], [[
|
]], [[
|
||||||
unsigned char buf;
|
unsigned char buf;
|
||||||
|
|
||||||
if (&getentropy != NULL) {
|
if (&getentropy != NULL) {
|
||||||
(void) getentropy((void *) &buf, 1U);
|
(void) getentropy((void *) &buf, 1U);
|
||||||
}
|
}
|
||||||
@ -878,7 +950,7 @@ if (&getentropy != NULL) {
|
|||||||
|
|
||||||
AS_IF([test "x$WASI" = "x"],[
|
AS_IF([test "x$WASI" = "x"],[
|
||||||
AC_CHECK_FUNCS([getpid])
|
AC_CHECK_FUNCS([getpid])
|
||||||
AC_CHECK_FUNCS([getauxva elf_aux_info])
|
AC_CHECK_FUNCS([getauxval elf_aux_info])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_CHECK_FUNCS([posix_memalign nanosleep clock_gettime])
|
AC_CHECK_FUNCS([posix_memalign nanosleep clock_gettime])
|
||||||
@ -922,7 +994,6 @@ AC_CONFIG_FILES([Makefile
|
|||||||
dist-build/Makefile
|
dist-build/Makefile
|
||||||
libsodium.pc
|
libsodium.pc
|
||||||
libsodium-uninstalled.pc
|
libsodium-uninstalled.pc
|
||||||
msvc-scripts/Makefile
|
|
||||||
src/Makefile
|
src/Makefile
|
||||||
src/libsodium/Makefile
|
src/libsodium/Makefile
|
||||||
src/libsodium/include/Makefile
|
src/libsodium/include/Makefile
|
||||||
|
4
deps/libsodium/contrib/Findsodium.cmake
vendored
4
deps/libsodium/contrib/Findsodium.cmake
vendored
@ -231,6 +231,10 @@ find_package_handle_standard_args(sodium
|
|||||||
VERSION_VAR
|
VERSION_VAR
|
||||||
sodium_VERSION_STRING)
|
sodium_VERSION_STRING)
|
||||||
|
|
||||||
|
if (NOT sodium_FOUND)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
# mark file paths as advanced
|
# mark file paths as advanced
|
||||||
mark_as_advanced(sodium_INCLUDE_DIR)
|
mark_as_advanced(sodium_INCLUDE_DIR)
|
||||||
mark_as_advanced(sodium_LIBRARY_DEBUG)
|
mark_as_advanced(sodium_LIBRARY_DEBUG)
|
||||||
|
1
deps/libsodium/contrib/Makefile.in
vendored
1
deps/libsodium/contrib/Makefile.in
vendored
@ -146,6 +146,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
|
7
deps/libsodium/dist-build/Makefile.am
vendored
7
deps/libsodium/dist-build/Makefile.am
vendored
@ -1,17 +1,14 @@
|
|||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
android-build.sh \
|
android-build.sh \
|
||||||
android-arm.sh \
|
android-aar.sh \
|
||||||
android-armv7-a.sh \
|
android-armv7-a.sh \
|
||||||
android-armv8-a.sh \
|
android-armv8-a.sh \
|
||||||
android-mips32.sh \
|
|
||||||
android-mips64.sh \
|
|
||||||
android-x86.sh \
|
android-x86.sh \
|
||||||
android-x86_64.sh \
|
android-x86_64.sh \
|
||||||
emscripten.sh \
|
emscripten.sh \
|
||||||
ios.sh \
|
|
||||||
apple-xcframework.sh \
|
apple-xcframework.sh \
|
||||||
|
macos.sh \
|
||||||
msys2-win32.sh \
|
msys2-win32.sh \
|
||||||
msys2-win64.sh \
|
msys2-win64.sh \
|
||||||
watchos.sh \
|
|
||||||
wasm32-wasi.sh
|
wasm32-wasi.sh
|
||||||
|
8
deps/libsodium/dist-build/Makefile.in
vendored
8
deps/libsodium/dist-build/Makefile.in
vendored
@ -146,6 +146,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
@ -300,19 +301,16 @@ valgrind_enabled_tools = @valgrind_enabled_tools@
|
|||||||
valgrind_tools = @valgrind_tools@
|
valgrind_tools = @valgrind_tools@
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
android-build.sh \
|
android-build.sh \
|
||||||
android-arm.sh \
|
android-aar.sh \
|
||||||
android-armv7-a.sh \
|
android-armv7-a.sh \
|
||||||
android-armv8-a.sh \
|
android-armv8-a.sh \
|
||||||
android-mips32.sh \
|
|
||||||
android-mips64.sh \
|
|
||||||
android-x86.sh \
|
android-x86.sh \
|
||||||
android-x86_64.sh \
|
android-x86_64.sh \
|
||||||
emscripten.sh \
|
emscripten.sh \
|
||||||
ios.sh \
|
|
||||||
apple-xcframework.sh \
|
apple-xcframework.sh \
|
||||||
|
macos.sh \
|
||||||
msys2-win32.sh \
|
msys2-win32.sh \
|
||||||
msys2-win64.sh \
|
msys2-win64.sh \
|
||||||
watchos.sh \
|
|
||||||
wasm32-wasi.sh
|
wasm32-wasi.sh
|
||||||
|
|
||||||
all: all-am
|
all: all-am
|
||||||
|
2
deps/libsodium/dist-build/android-aar.sh
vendored
2
deps/libsodium/dist-build/android-aar.sh
vendored
@ -5,7 +5,7 @@
|
|||||||
# The x86 static library will not work due to text relocation rules, so static x86 versions are limited to shared libraries.
|
# The x86 static library will not work due to text relocation rules, so static x86 versions are limited to shared libraries.
|
||||||
# To simplify linking, library variants have distinct names: sodium, sodium-static, sodium-minimal and sodium-minimal-static.
|
# To simplify linking, library variants have distinct names: sodium, sodium-static, sodium-minimal and sodium-minimal-static.
|
||||||
|
|
||||||
SODIUM_VERSION="1.0.18.0"
|
SODIUM_VERSION="1.0.19.0"
|
||||||
NDK_VERSION=$(grep "Pkg.Revision = " <"${ANDROID_NDK_HOME}/source.properties" | cut -f 2 -d '=' | cut -f 2 -d' ' | cut -f 1 -d'.')
|
NDK_VERSION=$(grep "Pkg.Revision = " <"${ANDROID_NDK_HOME}/source.properties" | cut -f 2 -d '=' | cut -f 2 -d' ' | cut -f 1 -d'.')
|
||||||
DEST_PATH=$(mktemp -d)
|
DEST_PATH=$(mktemp -d)
|
||||||
|
|
||||||
|
4
deps/libsodium/dist-build/android-arm.sh
vendored
4
deps/libsodium/dist-build/android-arm.sh
vendored
@ -1,4 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
export TARGET_ARCH=armv6
|
|
||||||
export CFLAGS="-Os -mthumb -marm -march=${TARGET_ARCH}"
|
|
||||||
ARCH=arm HOST_COMPILER=arm-linux-androideabi "$(dirname "$0")/android-build.sh"
|
|
4
deps/libsodium/dist-build/android-mips32.sh
vendored
4
deps/libsodium/dist-build/android-mips32.sh
vendored
@ -1,4 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
export TARGET_ARCH=mips32
|
|
||||||
export CFLAGS="-Os"
|
|
||||||
ARCH=mips HOST_COMPILER=mipsel-linux-android "$(dirname "$0")/android-build.sh"
|
|
4
deps/libsodium/dist-build/android-mips64.sh
vendored
4
deps/libsodium/dist-build/android-mips64.sh
vendored
@ -1,4 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
export TARGET_ARCH=mips64r6
|
|
||||||
export CFLAGS="-Os -march=${TARGET_ARCH}"
|
|
||||||
CC="mips64el-linux-android-gcc" NDK_PLATFORM=android-21 ARCH=mips64 HOST_COMPILER=mips64el-linux-android "$(dirname "$0")/android-build.sh"
|
|
146
deps/libsodium/dist-build/apple-xcframework.sh
vendored
146
deps/libsodium/dist-build/apple-xcframework.sh
vendored
@ -15,9 +15,11 @@ export WATCHOS64_PREFIX="${PREFIX}/tmp/watchos64"
|
|||||||
export WATCHOS_SIMULATOR_ARM64_PREFIX="${PREFIX}/tmp/watchos-simulator-arm64"
|
export WATCHOS_SIMULATOR_ARM64_PREFIX="${PREFIX}/tmp/watchos-simulator-arm64"
|
||||||
export WATCHOS_SIMULATOR_I386_PREFIX="${PREFIX}/tmp/watchos-simulator-i386"
|
export WATCHOS_SIMULATOR_I386_PREFIX="${PREFIX}/tmp/watchos-simulator-i386"
|
||||||
export WATCHOS_SIMULATOR_X86_64_PREFIX="${PREFIX}/tmp/watchos-simulator-x86_64"
|
export WATCHOS_SIMULATOR_X86_64_PREFIX="${PREFIX}/tmp/watchos-simulator-x86_64"
|
||||||
export TVOS64_PREFIX="${PREFIX}/tmp/tvos64"
|
export TVOS_PREFIX="${PREFIX}/tmp/tvos"
|
||||||
export TVOS_SIMULATOR_ARM64_PREFIX="${PREFIX}/tmp/tvos-simulator-arm64"
|
export TVOS_SIMULATOR_ARM64_PREFIX="${PREFIX}/tmp/tvos-simulator-arm64"
|
||||||
export TVOS_SIMULATOR_X86_64_PREFIX="${PREFIX}/tmp/tvos-simulator-x86_64"
|
export TVOS_SIMULATOR_X86_64_PREFIX="${PREFIX}/tmp/tvos-simulator-x86_64"
|
||||||
|
export VISIONOS_PREFIX="${PREFIX}/tmp/visionos"
|
||||||
|
export VISIONOS_SIMULATOR_PREFIX="${PREFIX}/tmp/visionos-simulator"
|
||||||
export CATALYST_ARM64_PREFIX="${PREFIX}/tmp/catalyst-arm64"
|
export CATALYST_ARM64_PREFIX="${PREFIX}/tmp/catalyst-arm64"
|
||||||
export CATALYST_X86_64_PREFIX="${PREFIX}/tmp/catalyst-x86_64"
|
export CATALYST_X86_64_PREFIX="${PREFIX}/tmp/catalyst-x86_64"
|
||||||
export LOG_FILE="${PREFIX}/tmp/build_log"
|
export LOG_FILE="${PREFIX}/tmp/build_log"
|
||||||
@ -40,7 +42,7 @@ echo "Define the LIBSODIUM_FULL_BUILD environment variable to build the full"
|
|||||||
echo "library (including all deprecated/undocumented/low-level functions)."
|
echo "library (including all deprecated/undocumented/low-level functions)."
|
||||||
echo
|
echo
|
||||||
echo "Define the LIBSODIUM_SKIP_SIMULATORS environment variable to skip building"
|
echo "Define the LIBSODIUM_SKIP_SIMULATORS environment variable to skip building"
|
||||||
echo "the simulators libraries (iOS, watchOS, tvOS simulators)."
|
echo "the simulators libraries (iOS, watchOS, tvOS, visionOS simulators)."
|
||||||
echo
|
echo
|
||||||
|
|
||||||
if [ -z "$LIBSODIUM_FULL_BUILD" ]; then
|
if [ -z "$LIBSODIUM_FULL_BUILD" ]; then
|
||||||
@ -69,21 +71,21 @@ build_macos() {
|
|||||||
|
|
||||||
## macOS arm64
|
## macOS arm64
|
||||||
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
export CFLAGS="-O2 -arch arm64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin20 --prefix="$MACOS_ARM64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$MACOS_ARM64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## macOS x86_64
|
## macOS x86_64
|
||||||
export CFLAGS="-O2 -arch x86_64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch x86_64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch x86_64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
export LDFLAGS="-arch x86_64 -mmacosx-version-min=${MACOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=x86_64-apple-darwin10 --prefix="$MACOS_X86_64_PREFIX" \
|
./configure --host=x86_64-apple-darwin23 --prefix="$MACOS_X86_64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -94,29 +96,29 @@ build_ios() {
|
|||||||
export SDK="${BASEDIR}/SDKs/iPhoneOS.sdk"
|
export SDK="${BASEDIR}/SDKs/iPhoneOS.sdk"
|
||||||
|
|
||||||
## 32-bit iOS
|
## 32-bit iOS
|
||||||
export CFLAGS="-O2 -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export LDFLAGS="-mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$IOS32_PREFIX" \
|
./configure --host=arm-apple-darwin23 --prefix="$IOS32_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## 32-bit armv7s iOS
|
## 32-bit armv7s iOS
|
||||||
export CFLAGS="-O2 -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export LDFLAGS="-mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$IOS32s_PREFIX" \
|
./configure --host=arm-apple-darwin23 --prefix="$IOS32s_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## 64-bit iOS
|
## 64-bit iOS
|
||||||
export CFLAGS="-O2 -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$IOS64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$IOS64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -128,30 +130,30 @@ build_ios_simulator() {
|
|||||||
|
|
||||||
## arm64 simulator
|
## arm64 simulator
|
||||||
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
export CFLAGS="-O2 -arch arm64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin20 --prefix="$IOS_SIMULATOR_ARM64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$IOS_SIMULATOR_ARM64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## i386 simulator
|
## i386 simulator
|
||||||
export CFLAGS="-O2 -arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=i686-apple-darwin10 --prefix="$IOS_SIMULATOR_I386_PREFIX" \
|
./configure --host=i686-apple-darwin23 --prefix="$IOS_SIMULATOR_I386_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## x86_64 simulator
|
## x86_64 simulator
|
||||||
export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=x86_64-apple-darwin10 --prefix="$IOS_SIMULATOR_X86_64_PREFIX" \
|
./configure --host=x86_64-apple-darwin23 --prefix="$IOS_SIMULATOR_X86_64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG}
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG}
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -162,29 +164,29 @@ build_watchos() {
|
|||||||
export SDK="${BASEDIR}/SDKs/WatchOS.sdk"
|
export SDK="${BASEDIR}/SDKs/WatchOS.sdk"
|
||||||
|
|
||||||
# 32-bit watchOS
|
# 32-bit watchOS
|
||||||
export CFLAGS="-O2 -mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export LDFLAGS="-mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$WATCHOS32_PREFIX" \
|
./configure --host=arm-apple-darwin23 --prefix="$WATCHOS32_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## 64-bit arm64_32 watchOS
|
## 64-bit arm64_32 watchOS
|
||||||
export CFLAGS="-O2 -mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export LDFLAGS="-mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$WATCHOS64_32_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$WATCHOS64_32_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## 64-bit arm64 watchOS
|
## 64-bit arm64 watchOS
|
||||||
export CFLAGS="-O2 -mthumb -arch arm64 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -mthumb -arch arm64 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-mthumb -arch arm64 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
export LDFLAGS="-mthumb -arch arm64 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$WATCHOS64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$WATCHOS64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -196,30 +198,30 @@ build_watchos_simulator() {
|
|||||||
|
|
||||||
## arm64 simulator
|
## arm64 simulator
|
||||||
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
export CFLAGS="-O2 -arch arm64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin20 --prefix="$WATCHOS_SIMULATOR_ARM64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$WATCHOS_SIMULATOR_ARM64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## i386 simulator
|
## i386 simulator
|
||||||
export CFLAGS="-O2 -arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=i686-apple-darwin10 --prefix="$WATCHOS_SIMULATOR_I386_PREFIX" \
|
./configure --host=i686-apple-darwin23 --prefix="$WATCHOS_SIMULATOR_I386_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
|
||||||
## x86_64 simulator
|
## x86_64 simulator
|
||||||
export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=x86_64-apple-darwin10 --prefix="$WATCHOS_SIMULATOR_X86_64_PREFIX" \
|
./configure --host=x86_64-apple-darwin23 --prefix="$WATCHOS_SIMULATOR_X86_64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -230,11 +232,11 @@ build_tvos() {
|
|||||||
export SDK="${BASEDIR}/SDKs/AppleTVOS.sdk"
|
export SDK="${BASEDIR}/SDKs/AppleTVOS.sdk"
|
||||||
|
|
||||||
## 64-bit tvOS
|
## 64-bit tvOS
|
||||||
export CFLAGS="-O2 -arch arm64 -isysroot ${SDK} -mtvos-version-min=${TVOS_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK} -mtvos-version-min=${TVOS_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mtvos-version-min=${TVOS_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mtvos-version-min=${TVOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin10 --prefix="$TVOS64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$TVOS_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
@ -246,25 +248,55 @@ build_tvos_simulator() {
|
|||||||
|
|
||||||
## arm64 simulator
|
## arm64 simulator
|
||||||
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
export CFLAGS="-O2 -arch arm64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch arm64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-darwin20 --prefix="$TVOS_SIMULATOR_ARM64_PREFIX" \
|
./configure --host=aarch64-apple-darwin23 --prefix="$TVOS_SIMULATOR_ARM64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## x86_64 simulator
|
## x86_64 simulator
|
||||||
export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
export CFLAGS="-Ofast -arch x86_64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
||||||
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mtvos-simulator-version-min=${TVOS_SIMULATOR_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=x86_64-apple-darwin10 --prefix="$TVOS_SIMULATOR_X86_64_PREFIX" \
|
./configure --host=x86_64-apple-darwin23 --prefix="$TVOS_SIMULATOR_X86_64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG}
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG}
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
build_visionos() {
|
||||||
|
export BASEDIR="${XCODEDIR}/Platforms/XROS.platform/Developer"
|
||||||
|
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
||||||
|
export SDK="${BASEDIR}/SDKs/XROS.sdk"
|
||||||
|
|
||||||
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK}"
|
||||||
|
export LDFLAGS="-arch arm64 -isysroot ${SDK}"
|
||||||
|
|
||||||
|
make distclean >/dev/null 2>&1
|
||||||
|
./configure --host=aarch64-apple-darwin23 --prefix="$VISIONOS_PREFIX" \
|
||||||
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
build_visionos_simulator() {
|
||||||
|
export BASEDIR="${XCODEDIR}/Platforms/XRSimulator.platform/Developer"
|
||||||
|
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
||||||
|
export SDK="${BASEDIR}/SDKs/XRSimulator.sdk"
|
||||||
|
|
||||||
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
|
export CFLAGS="-Ofast -arch arm64 -isysroot ${SDK}"
|
||||||
|
export LDFLAGS="-arch arm64 -isysroot ${SDK}"
|
||||||
|
|
||||||
|
make distclean >/dev/null 2>&1
|
||||||
|
./configure --host=aarch64-apple-darwin23 --prefix="$VISIONOS_SIMULATOR_PREFIX" \
|
||||||
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
|
make -j${PROCESSORS} install || exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
build_catalyst() {
|
build_catalyst() {
|
||||||
export BASEDIR="${XCODEDIR}/Platforms/MacOSX.platform/Developer"
|
export BASEDIR="${XCODEDIR}/Platforms/MacOSX.platform/Developer"
|
||||||
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
||||||
@ -272,17 +304,17 @@ build_catalyst() {
|
|||||||
|
|
||||||
## arm64 catalyst
|
## arm64 catalyst
|
||||||
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
export CFLAGS="-O2 -arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
|
export CFLAGS="-Ofast -arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
|
||||||
export LDFLAGS="-arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
|
export LDFLAGS="-arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
./configure --host=arm-apple-ios --prefix="$CATALYST_ARM64_PREFIX" \
|
./configure --host=aarch64-apple-ios --prefix="$CATALYST_ARM64_PREFIX" \
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
${LIBSODIUM_ENABLE_MINIMAL_FLAG} || exit 1
|
||||||
make -j${PROCESSORS} install || exit 1
|
make -j${PROCESSORS} install || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## x86_64 catalyst
|
## x86_64 catalyst
|
||||||
export CFLAGS="-O2 -arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
|
export CFLAGS="-Ofast -arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
|
||||||
export LDFLAGS="-arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
|
export LDFLAGS="-arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
|
||||||
|
|
||||||
make distclean >/dev/null 2>&1
|
make distclean >/dev/null 2>&1
|
||||||
@ -301,6 +333,8 @@ echo "Building for watchOS..."
|
|||||||
build_watchos >"$LOG_FILE" 2>&1 || exit 1
|
build_watchos >"$LOG_FILE" 2>&1 || exit 1
|
||||||
echo "Building for tvOS..."
|
echo "Building for tvOS..."
|
||||||
build_tvos >"$LOG_FILE" 2>&1 || exit 1
|
build_tvos >"$LOG_FILE" 2>&1 || exit 1
|
||||||
|
echo "Building for visionOS..."
|
||||||
|
build_visionos >"$LOG_FILE" 2>&1 || exit 1
|
||||||
echo "Building for Catalyst..."
|
echo "Building for Catalyst..."
|
||||||
build_catalyst >"$LOG_FILE" 2>&1 || exit 1
|
build_catalyst >"$LOG_FILE" 2>&1 || exit 1
|
||||||
|
|
||||||
@ -311,7 +345,9 @@ if [ -z "$LIBSODIUM_SKIP_SIMULATORS" ]; then
|
|||||||
build_watchos_simulator >"$LOG_FILE" 2>&1 || exit 1
|
build_watchos_simulator >"$LOG_FILE" 2>&1 || exit 1
|
||||||
echo "Building for the tvOS simulator..."
|
echo "Building for the tvOS simulator..."
|
||||||
build_tvos_simulator >"$LOG_FILE" 2>&1 || exit 1
|
build_tvos_simulator >"$LOG_FILE" 2>&1 || exit 1
|
||||||
else
|
echo "Building for the visionOS simulator..."
|
||||||
|
build_visionos_simulator >"$LOG_FILE" 2>&1 || exit 1
|
||||||
|
else
|
||||||
echo "[Skipping the simulators]"
|
echo "[Skipping the simulators]"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -365,13 +401,23 @@ done
|
|||||||
echo "Bundling tvOS targets..."
|
echo "Bundling tvOS targets..."
|
||||||
|
|
||||||
mkdir -p "${PREFIX}/tvos/lib"
|
mkdir -p "${PREFIX}/tvos/lib"
|
||||||
cp -a "${TVOS64_PREFIX}/include" "${PREFIX}/tvos/"
|
cp -a "${TVOS_PREFIX}/include" "${PREFIX}/tvos/"
|
||||||
for ext in a dylib; do
|
for ext in a dylib; do
|
||||||
lipo -create \
|
lipo -create \
|
||||||
"$TVOS64_PREFIX/lib/libsodium.${ext}" \
|
"$TVOS_PREFIX/lib/libsodium.${ext}" \
|
||||||
-output "$PREFIX/tvos/lib/libsodium.${ext}"
|
-output "$PREFIX/tvos/lib/libsodium.${ext}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo "Bundling visionOS targets..."
|
||||||
|
|
||||||
|
mkdir -p "${PREFIX}/visionos/lib"
|
||||||
|
cp -a "${VISIONOS_PREFIX}/include" "${PREFIX}/visionos/"
|
||||||
|
for ext in a dylib; do
|
||||||
|
lipo -create \
|
||||||
|
"$VISIONOS_PREFIX/lib/libsodium.${ext}" \
|
||||||
|
-output "$PREFIX/visionos/lib/libsodium.${ext}"
|
||||||
|
done
|
||||||
|
|
||||||
echo "Bundling Catalyst targets..."
|
echo "Bundling Catalyst targets..."
|
||||||
|
|
||||||
mkdir -p "${PREFIX}/catalyst/lib"
|
mkdir -p "${PREFIX}/catalyst/lib"
|
||||||
@ -447,6 +493,18 @@ if [ -z "$LIBSODIUM_SKIP_SIMULATORS" ]; then
|
|||||||
-output "${PREFIX}/tvos-simulators/lib/libsodium.${ext}" || exit 1
|
-output "${PREFIX}/tvos-simulators/lib/libsodium.${ext}" || exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo "Bundling visionOS simulators..."
|
||||||
|
|
||||||
|
mkdir -p "${PREFIX}/visionos-simulators/lib"
|
||||||
|
cp -a "${VISIONOS_SIMULATOR_PREFIX}/include" "${PREFIX}/visionos-simulators/"
|
||||||
|
for ext in a dylib; do
|
||||||
|
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
|
||||||
|
lipo -create \
|
||||||
|
"${VISIONOS_SIMULATOR_PREFIX}/lib/libsodium.${ext}" \
|
||||||
|
-output "${PREFIX}/visionos-simulators/lib/libsodium.${ext}" || exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Creating Clibsodium.xcframework..."
|
echo "Creating Clibsodium.xcframework..."
|
||||||
@ -454,12 +512,12 @@ echo "Creating Clibsodium.xcframework..."
|
|||||||
rm -rf "${PREFIX}/Clibsodium.xcframework"
|
rm -rf "${PREFIX}/Clibsodium.xcframework"
|
||||||
|
|
||||||
XCFRAMEWORK_ARGS=""
|
XCFRAMEWORK_ARGS=""
|
||||||
for f in macos ios watchos tvos catalyst; do
|
for f in macos ios watchos tvos visionos catalyst; do
|
||||||
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -library ${PREFIX}/${f}/lib/libsodium.a"
|
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -library ${PREFIX}/${f}/lib/libsodium.a"
|
||||||
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -headers ${PREFIX}/${f}/include"
|
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -headers ${PREFIX}/${f}/include"
|
||||||
done
|
done
|
||||||
if [ -z "$LIBSODIUM_SKIP_SIMULATORS" ]; then
|
if [ -z "$LIBSODIUM_SKIP_SIMULATORS" ]; then
|
||||||
for f in ios-simulators watchos-simulators tvos-simulators; do
|
for f in ios-simulators watchos-simulators tvos-simulators visionos-simulators; do
|
||||||
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -library ${PREFIX}/${f}/lib/libsodium.a"
|
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -library ${PREFIX}/${f}/lib/libsodium.a"
|
||||||
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -headers ${PREFIX}/${f}/include"
|
XCFRAMEWORK_ARGS="${XCFRAMEWORK_ARGS} -headers ${PREFIX}/${f}/include"
|
||||||
done
|
done
|
||||||
|
45
deps/libsodium/dist-build/emscripten-symbols.def
vendored
45
deps/libsodium/dist-build/emscripten-symbols.def
vendored
@ -1,3 +1,23 @@
|
|||||||
|
_crypto_aead_aegis128l_abytes 0 1
|
||||||
|
_crypto_aead_aegis128l_decrypt 0 1
|
||||||
|
_crypto_aead_aegis128l_decrypt_detached 0 1
|
||||||
|
_crypto_aead_aegis128l_encrypt 0 1
|
||||||
|
_crypto_aead_aegis128l_encrypt_detached 0 1
|
||||||
|
_crypto_aead_aegis128l_keybytes 0 1
|
||||||
|
_crypto_aead_aegis128l_keygen 0 1
|
||||||
|
_crypto_aead_aegis128l_messagebytes_max 0 1
|
||||||
|
_crypto_aead_aegis128l_npubbytes 0 1
|
||||||
|
_crypto_aead_aegis128l_nsecbytes 0 1
|
||||||
|
_crypto_aead_aegis256_abytes 0 1
|
||||||
|
_crypto_aead_aegis256_decrypt 0 1
|
||||||
|
_crypto_aead_aegis256_decrypt_detached 0 1
|
||||||
|
_crypto_aead_aegis256_encrypt 0 1
|
||||||
|
_crypto_aead_aegis256_encrypt_detached 0 1
|
||||||
|
_crypto_aead_aegis256_keybytes 0 1
|
||||||
|
_crypto_aead_aegis256_keygen 0 1
|
||||||
|
_crypto_aead_aegis256_messagebytes_max 0 1
|
||||||
|
_crypto_aead_aegis256_npubbytes 0 1
|
||||||
|
_crypto_aead_aegis256_nsecbytes 0 1
|
||||||
_crypto_aead_aes256gcm_abytes 0 0
|
_crypto_aead_aes256gcm_abytes 0 0
|
||||||
_crypto_aead_aes256gcm_beforenm 0 0
|
_crypto_aead_aes256gcm_beforenm 0 0
|
||||||
_crypto_aead_aes256gcm_decrypt 0 0
|
_crypto_aead_aes256gcm_decrypt 0 0
|
||||||
@ -145,7 +165,7 @@ _crypto_box_seedbytes 1 1
|
|||||||
_crypto_box_zerobytes 0 1
|
_crypto_box_zerobytes 0 1
|
||||||
_crypto_core_ed25519_add 0 1
|
_crypto_core_ed25519_add 0 1
|
||||||
_crypto_core_ed25519_bytes 0 1
|
_crypto_core_ed25519_bytes 0 1
|
||||||
_crypto_core_ed25519_from_hash 0 1
|
_crypto_core_ed25519_from_hash 0 0
|
||||||
_crypto_core_ed25519_from_uniform 0 1
|
_crypto_core_ed25519_from_uniform 0 1
|
||||||
_crypto_core_ed25519_hashbytes 0 1
|
_crypto_core_ed25519_hashbytes 0 1
|
||||||
_crypto_core_ed25519_is_valid_point 0 1
|
_crypto_core_ed25519_is_valid_point 0 1
|
||||||
@ -154,6 +174,7 @@ _crypto_core_ed25519_random 0 1
|
|||||||
_crypto_core_ed25519_scalar_add 0 1
|
_crypto_core_ed25519_scalar_add 0 1
|
||||||
_crypto_core_ed25519_scalar_complement 0 1
|
_crypto_core_ed25519_scalar_complement 0 1
|
||||||
_crypto_core_ed25519_scalar_invert 0 1
|
_crypto_core_ed25519_scalar_invert 0 1
|
||||||
|
_crypto_core_ed25519_scalar_is_canonical 0 1
|
||||||
_crypto_core_ed25519_scalar_mul 0 1
|
_crypto_core_ed25519_scalar_mul 0 1
|
||||||
_crypto_core_ed25519_scalar_negate 0 1
|
_crypto_core_ed25519_scalar_negate 0 1
|
||||||
_crypto_core_ed25519_scalar_random 0 1
|
_crypto_core_ed25519_scalar_random 0 1
|
||||||
@ -182,6 +203,7 @@ _crypto_core_ristretto255_random 0 1
|
|||||||
_crypto_core_ristretto255_scalar_add 0 1
|
_crypto_core_ristretto255_scalar_add 0 1
|
||||||
_crypto_core_ristretto255_scalar_complement 0 1
|
_crypto_core_ristretto255_scalar_complement 0 1
|
||||||
_crypto_core_ristretto255_scalar_invert 0 1
|
_crypto_core_ristretto255_scalar_invert 0 1
|
||||||
|
_crypto_core_ristretto255_scalar_is_canonical 0 1
|
||||||
_crypto_core_ristretto255_scalar_mul 0 1
|
_crypto_core_ristretto255_scalar_mul 0 1
|
||||||
_crypto_core_ristretto255_scalar_negate 0 1
|
_crypto_core_ristretto255_scalar_negate 0 1
|
||||||
_crypto_core_ristretto255_scalar_random 0 1
|
_crypto_core_ristretto255_scalar_random 0 1
|
||||||
@ -258,6 +280,26 @@ _crypto_kdf_bytes_max 1 1
|
|||||||
_crypto_kdf_bytes_min 1 1
|
_crypto_kdf_bytes_min 1 1
|
||||||
_crypto_kdf_contextbytes 1 1
|
_crypto_kdf_contextbytes 1 1
|
||||||
_crypto_kdf_derive_from_key 1 1
|
_crypto_kdf_derive_from_key 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_bytes_max 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_bytes_min 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_expand 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_extract 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_extract_final 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_extract_init 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_statebytes 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_extract_update 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_keybytes 1 1
|
||||||
|
_crypto_kdf_hkdf_sha256_keygen 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_bytes_max 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_bytes_min 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_expand 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_extract 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_extract_final 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_extract_init 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_statebytes 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_extract_update 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_keybytes 1 1
|
||||||
|
_crypto_kdf_hkdf_sha512_keygen 1 1
|
||||||
_crypto_kdf_keybytes 1 1
|
_crypto_kdf_keybytes 1 1
|
||||||
_crypto_kdf_keygen 1 1
|
_crypto_kdf_keygen 1 1
|
||||||
_crypto_kdf_primitive 0 1
|
_crypto_kdf_primitive 0 1
|
||||||
@ -591,6 +633,7 @@ _sodium_mprotect_readwrite 0 0
|
|||||||
_sodium_munlock 0 0
|
_sodium_munlock 0 0
|
||||||
_sodium_pad 1 1
|
_sodium_pad 1 1
|
||||||
_sodium_runtime_has_aesni 0 0
|
_sodium_runtime_has_aesni 0 0
|
||||||
|
_sodium_runtime_has_armcrypto 0 0
|
||||||
_sodium_runtime_has_avx 0 0
|
_sodium_runtime_has_avx 0 0
|
||||||
_sodium_runtime_has_avx2 0 0
|
_sodium_runtime_has_avx2 0 0
|
||||||
_sodium_runtime_has_avx512f 0 0
|
_sodium_runtime_has_avx512f 0 0
|
||||||
|
4
deps/libsodium/dist-build/emscripten.sh
vendored
4
deps/libsodium/dist-build/emscripten.sh
vendored
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
LIBSODIUM=${LIBSODIUM:-/tmp/sodium/lib/libsodium.23.dylib}
|
LIBSODIUM=${LIBSODIUM:-/tmp/sodium/lib/libsodium.26.dylib}
|
||||||
|
|
||||||
symbols() {
|
symbols() {
|
||||||
{
|
{
|
||||||
@ -17,7 +17,7 @@ symbols() {
|
|||||||
else
|
else
|
||||||
eval "defined_${symbol}=no"
|
eval "defined_${symbol}=no"
|
||||||
fi
|
fi
|
||||||
done < emscripten-symbols.def
|
done <emscripten-symbols.def
|
||||||
|
|
||||||
/usr/bin/nm "$LIBSODIUM" |
|
/usr/bin/nm "$LIBSODIUM" |
|
||||||
fgrep ' T _' |
|
fgrep ' T _' |
|
||||||
@ -34,11 +34,11 @@ symbols() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
} | \
|
} |
|
||||||
sort | \
|
sort |
|
||||||
{
|
{
|
||||||
out='"_malloc","_free"'
|
out='"_malloc","_free"'
|
||||||
while read symbol ; do
|
while read symbol; do
|
||||||
if [ ! -z "$out" ]; then
|
if [ ! -z "$out" ]; then
|
||||||
out="${out},"
|
out="${out},"
|
||||||
fi
|
fi
|
||||||
@ -49,11 +49,11 @@ symbols() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
out=$(symbols standard)
|
out=$(symbols standard)
|
||||||
sed s/EXPORTED_FUNCTIONS_STANDARD=\'.*\'/EXPORTED_FUNCTIONS_STANDARD=\'${out}\'/ < emscripten.sh > emscripten.sh.tmp && \
|
sed s/EXPORTED_FUNCTIONS_STANDARD=\'.*\'/EXPORTED_FUNCTIONS_STANDARD=\'${out}\'/ <emscripten.sh >emscripten.sh.tmp &&
|
||||||
mv -f emscripten.sh.tmp emscripten.sh
|
mv -f emscripten.sh.tmp emscripten.sh
|
||||||
|
|
||||||
out=$(symbols sumo)
|
out=$(symbols sumo)
|
||||||
sed s/EXPORTED_FUNCTIONS_SUMO=\'.*\'/EXPORTED_FUNCTIONS_SUMO=\'${out}\'/ < emscripten.sh > emscripten.sh.tmp && \
|
sed s/EXPORTED_FUNCTIONS_SUMO=\'.*\'/EXPORTED_FUNCTIONS_SUMO=\'${out}\'/ <emscripten.sh >emscripten.sh.tmp &&
|
||||||
mv -f emscripten.sh.tmp emscripten.sh
|
mv -f emscripten.sh.tmp emscripten.sh
|
||||||
|
|
||||||
chmod +x emscripten.sh
|
chmod +x emscripten.sh
|
||||||
|
135
deps/libsodium/dist-build/ios.sh
vendored
135
deps/libsodium/dist-build/ios.sh
vendored
@ -1,135 +0,0 @@
|
|||||||
#! /bin/sh
|
|
||||||
#
|
|
||||||
# Step 1.
|
|
||||||
# Configure for base system so simulator is covered
|
|
||||||
#
|
|
||||||
# Step 2.
|
|
||||||
# Make for iOS and iOS simulator
|
|
||||||
#
|
|
||||||
# Step 3.
|
|
||||||
# Merge libs into final version for xcode import
|
|
||||||
|
|
||||||
export PREFIX="$(pwd)/libsodium-ios"
|
|
||||||
export IOS32_PREFIX="$PREFIX/tmp/ios32"
|
|
||||||
export IOS32s_PREFIX="$PREFIX/tmp/ios32s"
|
|
||||||
export IOS64_PREFIX="$PREFIX/tmp/ios64"
|
|
||||||
export SIMULATOR32_PREFIX="$PREFIX/tmp/simulator32"
|
|
||||||
export SIMULATOR64_PREFIX="$PREFIX/tmp/simulator64"
|
|
||||||
export XCODEDIR=$(xcode-select -p)
|
|
||||||
|
|
||||||
export IOS_SIMULATOR_VERSION_MIN=${IOS_SIMULATOR_VERSION_MIN-"6.0.0"}
|
|
||||||
export IOS_VERSION_MIN=${IOS_VERSION_MIN-"6.0.0"}
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Warnings related to headers being present but not usable are due to functions"
|
|
||||||
echo "that didn't exist in the specified minimum iOS version level."
|
|
||||||
echo "They can be safely ignored."
|
|
||||||
echo
|
|
||||||
|
|
||||||
mkdir -p $SIMULATOR32_PREFIX $SIMULATOR64_PREFIX $IOS32_PREFIX $IOS32s_PREFIX $IOS64_PREFIX || exit 1
|
|
||||||
|
|
||||||
# Build for the simulator
|
|
||||||
export BASEDIR="${XCODEDIR}/Platforms/iPhoneSimulator.platform/Developer"
|
|
||||||
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
|
||||||
export SDK="${BASEDIR}/SDKs/iPhoneSimulator.sdk"
|
|
||||||
|
|
||||||
## i386 simulator
|
|
||||||
export CFLAGS="-O2 -arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
if [ -z "$LIBSODIUM_FULL_BUILD" ]; then
|
|
||||||
export LIBSODIUM_ENABLE_MINIMAL_FLAG="--enable-minimal"
|
|
||||||
else
|
|
||||||
export LIBSODIUM_ENABLE_MINIMAL_FLAG=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
./configure --host=i686-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$SIMULATOR32_PREFIX" || exit 1
|
|
||||||
|
|
||||||
|
|
||||||
NPROCESSORS=$(getconf NPROCESSORS_ONLN 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null)
|
|
||||||
PROCESSORS=${NPROCESSORS:-3}
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
## x86_64 simulator
|
|
||||||
export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=x86_64-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$SIMULATOR64_PREFIX"
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
# Build for iOS
|
|
||||||
export BASEDIR="${XCODEDIR}/Platforms/iPhoneOS.platform/Developer"
|
|
||||||
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
|
||||||
export SDK="${BASEDIR}/SDKs/iPhoneOS.sdk"
|
|
||||||
|
|
||||||
## 32-bit iOS
|
|
||||||
export CFLAGS="-fembed-bitcode -O2 -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-fembed-bitcode -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=arm-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$IOS32_PREFIX" || exit 1
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
## 32-bit armv7s iOS
|
|
||||||
export CFLAGS="-fembed-bitcode -O2 -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-fembed-bitcode -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=arm-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$IOS32s_PREFIX" || exit 1
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
## 64-bit iOS
|
|
||||||
export CFLAGS="-fembed-bitcode -O2 -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-fembed-bitcode -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=arm-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$IOS64_PREFIX" || exit 1
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
# Create universal binary and include folder
|
|
||||||
rm -fr -- "$PREFIX/include" "$PREFIX/libsodium.a" 2> /dev/null
|
|
||||||
mkdir -p -- "$PREFIX/lib"
|
|
||||||
lipo -create \
|
|
||||||
"$SIMULATOR32_PREFIX/lib/libsodium.a" \
|
|
||||||
"$SIMULATOR64_PREFIX/lib/libsodium.a" \
|
|
||||||
"$IOS32_PREFIX/lib/libsodium.a" \
|
|
||||||
"$IOS32s_PREFIX/lib/libsodium.a" \
|
|
||||||
"$IOS64_PREFIX/lib/libsodium.a" \
|
|
||||||
-output "$PREFIX/lib/libsodium.a"
|
|
||||||
mv -f -- "$IOS32_PREFIX/include" "$PREFIX/"
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "libsodium has been installed into $PREFIX"
|
|
||||||
echo
|
|
||||||
file -- "$PREFIX/lib/libsodium.a"
|
|
||||||
|
|
||||||
# Cleanup
|
|
||||||
rm -rf -- "$PREFIX/tmp"
|
|
||||||
make distclean > /dev/null
|
|
@ -14,7 +14,7 @@ PROCESSORS=${NPROCESSORS:-3}
|
|||||||
|
|
||||||
mkdir -p $PREFIX || exit 1
|
mkdir -p $PREFIX || exit 1
|
||||||
|
|
||||||
export CFLAGS="-mmacosx-version-min=${MACOS_VERSION_MIN} -O2 -g"
|
export CFLAGS="-mmacosx-version-min=${MACOS_VERSION_MIN} -Ofast"
|
||||||
export LDFLAGS="-mmacosx-version-min=${MACOS_VERSION_MIN}"
|
export LDFLAGS="-mmacosx-version-min=${MACOS_VERSION_MIN}"
|
||||||
|
|
||||||
make distclean >/dev/null
|
make distclean >/dev/null
|
12
deps/libsodium/dist-build/msys2-win32.sh
vendored
12
deps/libsodium/dist-build/msys2-win32.sh
vendored
@ -3,7 +3,7 @@
|
|||||||
export CFLAGS="-Ofast -fomit-frame-pointer -m32 -march=pentium3 -mtune=westmere"
|
export CFLAGS="-Ofast -fomit-frame-pointer -m32 -march=pentium3 -mtune=westmere"
|
||||||
export PREFIX="$(pwd)/libsodium-win32"
|
export PREFIX="$(pwd)/libsodium-win32"
|
||||||
|
|
||||||
if (i686-w64-mingw32-gcc --version > /dev/null 2>&1) then
|
if (i686-w64-mingw32-gcc --version >/dev/null 2>&1); then
|
||||||
echo MinGW found
|
echo MinGW found
|
||||||
else
|
else
|
||||||
echo Please install mingw-w64-i686-gcc >&2
|
echo Please install mingw-w64-i686-gcc >&2
|
||||||
@ -11,8 +11,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
||||||
--host=i686-w64-mingw32 && \
|
--host=i686-w64-mingw32 &&
|
||||||
make clean && \
|
make clean &&
|
||||||
make && \
|
make &&
|
||||||
make check && \
|
make check &&
|
||||||
make install
|
make install
|
||||||
|
12
deps/libsodium/dist-build/msys2-win64.sh
vendored
12
deps/libsodium/dist-build/msys2-win64.sh
vendored
@ -3,7 +3,7 @@
|
|||||||
export CFLAGS="-Ofast -fomit-frame-pointer -m64 -mtune=westmere"
|
export CFLAGS="-Ofast -fomit-frame-pointer -m64 -mtune=westmere"
|
||||||
export PREFIX="$(pwd)/libsodium-win64"
|
export PREFIX="$(pwd)/libsodium-win64"
|
||||||
|
|
||||||
if (x86_64-w64-mingw32-gcc --version > /dev/null 2>&1) then
|
if (x86_64-w64-mingw32-gcc --version >/dev/null 2>&1); then
|
||||||
echo MinGW found
|
echo MinGW found
|
||||||
else
|
else
|
||||||
echo Please install mingw-w64-x86_64-gcc >&2
|
echo Please install mingw-w64-x86_64-gcc >&2
|
||||||
@ -11,8 +11,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
||||||
--host=x86_64-w64-mingw32 && \
|
--host=x86_64-w64-mingw32 &&
|
||||||
make clean && \
|
make clean &&
|
||||||
make && \
|
make &&
|
||||||
make check && \
|
make check &&
|
||||||
make install
|
make install
|
||||||
|
114
deps/libsodium/dist-build/watchos.sh
vendored
114
deps/libsodium/dist-build/watchos.sh
vendored
@ -1,114 +0,0 @@
|
|||||||
#! /bin/sh
|
|
||||||
#
|
|
||||||
# Step 1.
|
|
||||||
# Configure for base system so simulator is covered
|
|
||||||
#
|
|
||||||
# Step 2.
|
|
||||||
# Make for watchOS and watchOS simulator
|
|
||||||
#
|
|
||||||
# Step 3.
|
|
||||||
# Merge libs into final version for xcode import
|
|
||||||
|
|
||||||
export PREFIX="$(pwd)/libsodium-watchos"
|
|
||||||
export WATCHOS32_PREFIX="$PREFIX/tmp/watchos32"
|
|
||||||
export WATCHOS64_32_PREFIX="$PREFIX/tmp/watchos64_32"
|
|
||||||
export SIMULATOR32_PREFIX="$PREFIX/tmp/simulator32"
|
|
||||||
export SIMULATOR64_PREFIX="$PREFIX/tmp/simulator64"
|
|
||||||
export XCODEDIR=$(xcode-select -p)
|
|
||||||
|
|
||||||
export WATCHOS_SIMULATOR_VERSION_MIN=${WATCHOS_SIMULATOR_VERSION_MIN-"4.0.0"}
|
|
||||||
export WATCHOS_VERSION_MIN=${WATCHOS_VERSION_MIN-"4.0.0"}
|
|
||||||
|
|
||||||
mkdir -p $SIMULATOR32_PREFIX $SIMULATOR64_PREFIX $WATCHOS32_PREFIX $WATCHOS64_32_PREFIX || exit 1
|
|
||||||
|
|
||||||
# Build for the simulator
|
|
||||||
export BASEDIR="${XCODEDIR}/Platforms/WatchSimulator.platform/Developer"
|
|
||||||
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
|
||||||
export SDK="${BASEDIR}/SDKs/WatchSimulator.sdk"
|
|
||||||
|
|
||||||
## i386 simulator
|
|
||||||
export CFLAGS="-O2 -arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-arch i386 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
if [ -z "$LIBSODIUM_FULL_BUILD" ]; then
|
|
||||||
export LIBSODIUM_ENABLE_MINIMAL_FLAG="--enable-minimal"
|
|
||||||
else
|
|
||||||
export LIBSODIUM_ENABLE_MINIMAL_FLAG=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
./configure --host=i686-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$SIMULATOR32_PREFIX" || exit 1
|
|
||||||
|
|
||||||
|
|
||||||
NPROCESSORS=$(getconf NPROCESSORS_ONLN 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null)
|
|
||||||
PROCESSORS=${NPROCESSORS:-3}
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
## x86_64 simulator
|
|
||||||
export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mwatchos-simulator-version-min=${WATCHOS_SIMULATOR_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=x86_64-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$SIMULATOR64_PREFIX"
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
# Build for watchOS
|
|
||||||
export BASEDIR="${XCODEDIR}/Platforms/WatchOS.platform/Developer"
|
|
||||||
export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
|
|
||||||
export SDK="${BASEDIR}/SDKs/WatchOS.sdk"
|
|
||||||
|
|
||||||
## 32-bit watchOS
|
|
||||||
export CFLAGS="-fembed-bitcode -O2 -mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-fembed-bitcode -mthumb -arch armv7k -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=arm-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$WATCHOS32_PREFIX" || exit 1
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
## 64-bit arm64_32 watchOS
|
|
||||||
export CFLAGS="-fembed-bitcode -O2 -mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
|
||||||
export LDFLAGS="-fembed-bitcode -mthumb -arch arm64_32 -isysroot ${SDK} -mwatchos-version-min=${WATCHOS_VERSION_MIN}"
|
|
||||||
|
|
||||||
make distclean > /dev/null
|
|
||||||
|
|
||||||
./configure --host=arm-apple-darwin10 \
|
|
||||||
--disable-shared \
|
|
||||||
${LIBSODIUM_ENABLE_MINIMAL_FLAG} \
|
|
||||||
--prefix="$WATCHOS64_32_PREFIX" || exit 1
|
|
||||||
|
|
||||||
make -j${PROCESSORS} install || exit 1
|
|
||||||
|
|
||||||
# Create universal binary and include folder
|
|
||||||
rm -fr -- "$PREFIX/include" "$PREFIX/libsodium.a" 2> /dev/null
|
|
||||||
mkdir -p -- "$PREFIX/lib"
|
|
||||||
lipo -create \
|
|
||||||
"$SIMULATOR32_PREFIX/lib/libsodium.a" \
|
|
||||||
"$SIMULATOR64_PREFIX/lib/libsodium.a" \
|
|
||||||
"$WATCHOS32_PREFIX/lib/libsodium.a" \
|
|
||||||
"$WATCHOS64_32_PREFIX/lib/libsodium.a" \
|
|
||||||
-output "$PREFIX/lib/libsodium.a"
|
|
||||||
mv -f -- "$WATCHOS32_PREFIX/include" "$PREFIX/"
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "libsodium has been installed into $PREFIX"
|
|
||||||
echo
|
|
||||||
file -- "$PREFIX/lib/libsodium.a"
|
|
||||||
|
|
||||||
# Cleanup
|
|
||||||
rm -rf -- "$PREFIX/tmp"
|
|
||||||
make distclean > /dev/null
|
|
564
deps/libsodium/libsodium.vcxproj
vendored
564
deps/libsodium/libsodium.vcxproj
vendored
@ -1,564 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="DebugDLL|Win32">
|
|
||||||
<Configuration>DebugDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
|
||||||
<Configuration>DebugDLL</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<RootNamespace>libsodium</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v140</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="msvc-scripts\sodium.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
<OutDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\</OutDir>
|
|
||||||
<IntDir>$(SolutionDir)Build\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>Full</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>Full</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\crypto_generichash.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\generichash_blake2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\generichash_blake2b.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kx\crypto_kx.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\crypto_sign.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\sign_ed25519.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\obsolete.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\sign.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\keypair.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\open.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\crypto_secretbox.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\crypto_secretbox_easy.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\xsalsa20poly1305\secretbox_xsalsa20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\xchacha20poly1305\secretbox_xchacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\crypto_pwhash.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\blake2b-long.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-core.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx512f.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ssse3.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\pwhash_argon2i.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\pwhash_argon2id.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-encoding.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_verify\sodium\verify.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\crypto_auth.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kdf\crypto_kdf.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\crypto_shorthash.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphashx24_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash24_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\crypto_scalarmult.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\ristretto255\ref10\scalarmult_ristretto255_ref10.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\ed25519\ref10\scalarmult_ed25519_ref10.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe_frombytes_sandy2x.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_invert.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\randombytes.c" />
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\sysrandom\randombytes_sysrandom.c" />
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\internal\randombytes_internal_random.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box_easy.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box_seal.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xsalsa20poly1305\box_curve25519xsalsa20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xchacha20poly1305\box_curve25519xchacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xchacha20poly1305\box_seal_curve25519xchacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\sodium\codecs.c" />
|
|
||||||
<ClCompile Include="src\libsodium\sodium\runtime.c" />
|
|
||||||
<ClCompile Include="src\libsodium\sodium\core.c" />
|
|
||||||
<ClCompile Include="src\libsodium\sodium\utils.c" />
|
|
||||||
<ClCompile Include="src\libsodium\sodium\version.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\crypto_stream.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\xchacha20\stream_xchacha20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\stream_chacha20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\stream_salsa20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa2012\stream_salsa2012.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa2012\ref\stream_salsa2012_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa208\stream_salsa208.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa208\ref\stream_salsa208_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\crypto_hash.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha512\hash_sha512.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha256\hash_sha256.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hchacha20\core_hchacha20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\core_ed25519.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\core_ristretto255.c" />
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-avx2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse41.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_sign\ed25519\ref10\sign_ed25519_ref10.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa2012.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\utils.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_hchacha20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash_sha512.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\core.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\version.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\export.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_shorthash_siphash24.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash_sha256.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha512.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_xchacha20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_onetimeauth_poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_ristretto255.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kx.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kdf.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha256.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_32.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_ristretto255.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_xchacha20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa208.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha512256.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes_sysrandom.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\runtime.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa208.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_aes256gcm.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa2012.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox_xchacha20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_16.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_chacha20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_xsalsa20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_hsalsa20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kdf_blake2b.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_curve25519.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_shorthash.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_argon2id.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign_ed25519.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_onetimeauth.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_64.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_ed25519.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_argon2i.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes_internal_random.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_generichash.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox_xsalsa20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_ed25519.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box_curve25519xsalsa20poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_generichash_blake2b.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\sse2_64_32.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\common.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\mutex.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\chacha20_ietf_ext.h" />
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\implementations.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-ref.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-avx2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-ssse3.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2-encoding.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blake2b-long.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-avx512f.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2-core.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash_ref.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\consts_namespace.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder_namespace.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_namespace.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna64.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna32.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\stream_chacha20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u4.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u0.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u1.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u8.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\stream_salsa20.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u4.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u0.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u1.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u8.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\constants.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\fe.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\base2.h" />
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\base.h" />
|
|
||||||
<ClInclude Include="builds\msvc\resource.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ResourceCompile Include="builds\msvc\resource.rc">
|
|
||||||
</ResourceCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
726
deps/libsodium/libsodium.vcxproj.filters
vendored
726
deps/libsodium/libsodium.vcxproj.filters
vendored
@ -1,726 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
|
||||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Resource Files">
|
|
||||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
||||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\crypto_generichash.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\generichash_blake2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\generichash_blake2b.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kx\crypto_kx.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\crypto_sign.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\sign_ed25519.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\obsolete.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\sign.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\keypair.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_sign\ed25519\ref10\open.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\crypto_secretbox.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\crypto_secretbox_easy.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\xsalsa20poly1305\secretbox_xsalsa20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretbox\xchacha20poly1305\secretbox_xchacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\crypto_pwhash.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\blake2b-long.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-core.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx512f.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-ssse3.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\pwhash_argon2i.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\pwhash_argon2id.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-fill-block-avx2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\argon2\argon2-encoding.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\scrypt_platform.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt-common.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pwhash_scryptsalsa208sha256.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\nosse\pwhash_scryptsalsa208sha256_nosse.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\sse\pwhash_scryptsalsa208sha256_sse.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_verify\sodium\verify.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\crypto_auth.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha512\auth_hmacsha512.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha512256\auth_hmacsha512256.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_auth\hmacsha256\auth_hmacsha256.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kdf\crypto_kdf.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_kdf\blake2b\kdf_blake2b.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\crypto_shorthash.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\shorthash_siphash24.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\shorthash_siphashx24.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphashx24_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash24_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\crypto_scalarmult.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\ristretto255\ref10\scalarmult_ristretto255_ref10.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\ed25519\ref10\scalarmult_ed25519_ref10.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe_frombytes_sandy2x.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_invert.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\crypto_onetimeauth.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\randombytes.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\sysrandom\randombytes_sysrandom.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\randombytes\internal\randombytes_internal_random.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box_easy.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box_seal.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\crypto_box.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xsalsa20poly1305\box_curve25519xsalsa20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xchacha20poly1305\box_curve25519xchacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_box\curve25519xchacha20poly1305\box_seal_curve25519xchacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\sodium\codecs.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\sodium\runtime.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\sodium\core.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\sodium\utils.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\sodium\version.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\crypto_stream.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\xchacha20\stream_xchacha20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\stream_chacha20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\stream_salsa20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa2012\stream_salsa2012.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa2012\ref\stream_salsa2012_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa208\stream_salsa208.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\salsa208\ref\stream_salsa208_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_stream\xsalsa20\stream_xsalsa20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\crypto_hash.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha512\hash_sha512.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha512\cp\hash_sha512_cp.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha256\hash_sha256.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_hash\sha256\cp\hash_sha256_cp.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\xchacha20poly1305\sodium\aead_xchacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\aes256gcm\aesni\aead_aes256gcm_aesni.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_aead\chacha20poly1305\sodium\aead_chacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_secretstream\xchacha20poly1305\secretstream_xchacha20poly1305.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\salsa\ref\core_salsa_ref.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hchacha20\core_hchacha20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hsalsa20\core_hsalsa20.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\hsalsa20\ref2\core_hsalsa20_ref2.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\core_ed25519.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\core_ristretto255.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="src\libsodium\crypto_core\ed25519\ref10\ed25519_ref10.c">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-avx2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-ssse3.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-load-sse41.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-avx2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_generichash\blake2b\ref\blake2b-compress-sse41.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_sign\ed25519\ref10\sign_ed25519_ref10.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa2012.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\utils.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_hchacha20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash_sha512.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\core.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\version.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\export.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_shorthash_siphash24.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash_sha256.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha512.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_xchacha20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_onetimeauth_poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_ristretto255.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kx.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_hash.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kdf.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha256.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_32.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_ristretto255.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_xchacha20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa208.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_auth_hmacsha512256.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_chacha20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes_sysrandom.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\runtime.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_salsa208.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_aead_aes256gcm.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_salsa2012.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox_xchacha20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_16.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_chacha20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_stream_xsalsa20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_hsalsa20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_kdf_blake2b.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_curve25519.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_shorthash.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_argon2id.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretstream_xchacha20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_scryptsalsa208sha256.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign_ed25519.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_onetimeauth.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_verify_64.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box_curve25519xchacha20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_core_ed25519.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_pwhash_argon2i.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\randombytes_internal_random.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_generichash.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox_xsalsa20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_secretbox.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_scalarmult_ed25519.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_box_curve25519xsalsa20poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_generichash_blake2b.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\crypto_sign_edwards25519sha512batch.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10_fe_25_5.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\ed25519_ref10_fe_51.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\sse2_64_32.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\common.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\mutex.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\chacha20_ietf_ext.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\include\sodium\private\implementations.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-ref.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-avx2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-ssse3.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2-encoding.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blake2b-long.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\blamka-round-avx512f.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\argon2\argon2-core.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\crypto_scrypt.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_pwhash\scryptsalsa208sha256\pbkdf2-sha256.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_shorthash\siphash24\ref\shorthash_siphash_ref.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\scalarmult_curve25519.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\consts_namespace.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder_namespace.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\ladder.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\curve25519_sandy2x.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\sandy2x\fe51_namespace.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_scalarmult\curve25519\ref10\x25519_ref10.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\onetimeauth_poly1305.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna64.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\donna\poly1305_donna32.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_onetimeauth\poly1305\sse2\poly1305_sse2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\stream_chacha20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\ref\chacha20_ref.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u4.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-ssse3.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u0.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u1.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\chacha20_dolbeau-avx2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\chacha20\dolbeau\u8.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\stream_salsa20.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\ref\salsa20_ref.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u4.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u0.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u1.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-avx2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\u8.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6int\salsa20_xmm6int-sse2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_stream\salsa20\xmm6\salsa20_xmm6.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\constants.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\fe.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_25_5\base.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\constants.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\fe.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\base2.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="src\libsodium\crypto_core\ed25519\ref10\fe_51\base.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
79
deps/libsodium/m4/ax_add_fortify_source.m4
vendored
79
deps/libsodium/m4/ax_add_fortify_source.m4
vendored
@ -9,9 +9,9 @@
|
|||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
#
|
#
|
||||||
# Check whether -D_FORTIFY_SOURCE=2 can be added to CPPFLAGS without macro
|
# Check whether -D_FORTIFY_SOURCE=2 can be added to CPPFLAGS without macro
|
||||||
# redefinition warnings or linker errors. Some distributions (such as
|
# redefinition warnings, other cpp warnings or linker. Some distributions
|
||||||
# Gentoo Linux) enable _FORTIFY_SOURCE globally in their compilers,
|
# (such as Ubuntu or Gentoo Linux) enable _FORTIFY_SOURCE globally in
|
||||||
# leading to unnecessary warnings in the form of
|
# their compilers, leading to unnecessary warnings in the form of
|
||||||
#
|
#
|
||||||
# <command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
# <command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
||||||
# <built-in>: note: this is the location of the previous definition
|
# <built-in>: note: this is the location of the previous definition
|
||||||
@ -21,41 +21,45 @@
|
|||||||
# to CPPFLAGS.
|
# to CPPFLAGS.
|
||||||
#
|
#
|
||||||
# Newer mingw-w64 msys2 package comes with a bug in
|
# Newer mingw-w64 msys2 package comes with a bug in
|
||||||
# headers-git-7.0.0.5546.d200317d-1. It broke -D_FORTIFY_SOURCE
|
# headers-git-7.0.0.5546.d200317d-1. It broke -D_FORTIFY_SOURCE support,
|
||||||
# support, and would need -lssp or -fstack-protector. See
|
# and would need -lssp or -fstack-protector. See
|
||||||
# https://github.com/msys2/MINGW-packages/issues/5803. Try to
|
# https://github.com/msys2/MINGW-packages/issues/5803. Try to actually
|
||||||
# actually link it.
|
# link it.
|
||||||
#
|
#
|
||||||
# LICENSE
|
# LICENSE
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 David Seifert <soap@gentoo.org>
|
# Copyright (c) 2017 David Seifert <soap@gentoo.org>
|
||||||
# Copyright (c) 2019 Reini Urban <rurban@cpan.org>
|
# Copyright (c) 2019, 2023 Reini Urban <rurban@cpan.org>
|
||||||
#
|
#
|
||||||
# Copying and distribution of this file, with or without modification, are
|
# Copying and distribution of this file, with or without modification, are
|
||||||
# permitted in any medium without royalty provided the copyright notice
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
# and this notice are preserved. This file is offered as-is, without any
|
# and this notice are preserved. This file is offered as-is, without any
|
||||||
# warranty.
|
# warranty.
|
||||||
|
|
||||||
#serial 3
|
#serial 8
|
||||||
|
|
||||||
AC_DEFUN([AX_ADD_FORTIFY_SOURCE],[
|
AC_DEFUN([AX_ADD_FORTIFY_SOURCE],[
|
||||||
AC_MSG_CHECKING([whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS])
|
ac_save_cflags=$CFLAGS
|
||||||
|
ac_cwerror_flag=yes
|
||||||
|
AX_CHECK_COMPILE_FLAG([-Werror],[CFLAGS="$CFLAGS -Werror"])
|
||||||
|
ax_add_fortify_3_failed=
|
||||||
|
AC_MSG_CHECKING([whether to add -D_FORTIFY_SOURCE=3 to CPPFLAGS])
|
||||||
AC_LINK_IFELSE([
|
AC_LINK_IFELSE([
|
||||||
AC_LANG_PROGRAM([],
|
AC_LANG_PROGRAM([],
|
||||||
[[
|
[[
|
||||||
#ifndef _FORTIFY_SOURCE
|
#ifndef _FORTIFY_SOURCE
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
#else
|
||||||
this_is_an_error;
|
_FORTIFY_SOURCE_already_defined;
|
||||||
#endif
|
#endif
|
||||||
]]
|
]]
|
||||||
)],
|
)],
|
||||||
AC_LINK_IFELSE([
|
AC_LINK_IFELSE([
|
||||||
AC_LANG_SOURCE([[
|
AC_LANG_SOURCE([[
|
||||||
#define _FORTIFY_SOURCE 2
|
#define _FORTIFY_SOURCE 3
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
int main() {
|
int main() {
|
||||||
const char *s = " ";
|
char *s = " ";
|
||||||
strcpy(s, "x");
|
strcpy(s, "x");
|
||||||
return strlen(s)-1;
|
return strlen(s)-1;
|
||||||
}
|
}
|
||||||
@ -63,12 +67,55 @@ AC_DEFUN([AX_ADD_FORTIFY_SOURCE],[
|
|||||||
)],
|
)],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
CFLAGS=$ac_save_cflags
|
||||||
|
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=3"
|
||||||
], [
|
], [
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
ax_add_fortify_3_failed=1
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
])
|
CFLAGS=$ac_save_cflags
|
||||||
|
ax_add_fortify_3_failed=1
|
||||||
|
])
|
||||||
|
if test -n "$ax_add_fortify_3_failed"
|
||||||
|
then
|
||||||
|
AC_MSG_CHECKING([whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS])
|
||||||
|
AC_LINK_IFELSE([
|
||||||
|
AC_LANG_PROGRAM([],
|
||||||
|
[[
|
||||||
|
#ifndef _FORTIFY_SOURCE
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
|
_FORTIFY_SOURCE_already_defined;
|
||||||
|
#endif
|
||||||
|
]]
|
||||||
|
)],
|
||||||
|
AC_LINK_IFELSE([
|
||||||
|
AC_LANG_SOURCE([[
|
||||||
|
#define _FORTIFY_SOURCE 2
|
||||||
|
#include <string.h>
|
||||||
|
int main(void) {
|
||||||
|
char *s = " ";
|
||||||
|
strcpy(s, "x");
|
||||||
|
return strlen(s)-1;
|
||||||
|
}
|
||||||
|
]]
|
||||||
|
)],
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
||||||
|
], [
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
],
|
||||||
|
),
|
||||||
|
[
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
CFLAGS=$ac_save_cflags
|
||||||
|
])
|
||||||
|
fi
|
||||||
])
|
])
|
||||||
|
3
deps/libsodium/m4/ax_check_catchable_segv.m4
vendored
3
deps/libsodium/m4/ax_check_catchable_segv.m4
vendored
@ -21,6 +21,9 @@ static void sig(int _) { exit(0); }
|
|||||||
volatile unsigned char * volatile x = (volatile unsigned char *) malloc(8);
|
volatile unsigned char * volatile x = (volatile unsigned char *) malloc(8);
|
||||||
size_t i;
|
size_t i;
|
||||||
|
|
||||||
|
#ifdef SIGPROT
|
||||||
|
signal(SIGPROT, sig);
|
||||||
|
#endif
|
||||||
signal(SIGSEGV, sig);
|
signal(SIGSEGV, sig);
|
||||||
signal(SIGBUS, sig);
|
signal(SIGBUS, sig);
|
||||||
#if !defined(__SANITIZE_ADDRESS__) && !defined(__EMSCRIPTEN__)
|
#if !defined(__SANITIZE_ADDRESS__) && !defined(__EMSCRIPTEN__)
|
||||||
|
33
deps/libsodium/m4/ax_check_define.m4
vendored
33
deps/libsodium/m4/ax_check_define.m4
vendored
@ -18,33 +18,12 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify it
|
# Copying and distribution of this file, with or without modification, are
|
||||||
# under the terms of the GNU General Public License as published by the
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
# Free Software Foundation; either version 3 of the License, or (at your
|
# and this notice are preserved. This file is offered as-is, without any
|
||||||
# option) any later version.
|
# warranty.
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
||||||
# Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License along
|
|
||||||
# with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# As a special exception, the respective Autoconf Macro's copyright owner
|
|
||||||
# gives unlimited permission to copy, distribute and modify the configure
|
|
||||||
# scripts that are the output of Autoconf when processing the Macro. You
|
|
||||||
# need not follow the terms of the GNU General Public License when using
|
|
||||||
# or distributing such scripts, even though portions of the text of the
|
|
||||||
# Macro appear in them. The GNU General Public License (GPL) does govern
|
|
||||||
# all other use of the material that constitutes the Autoconf Macro.
|
|
||||||
#
|
|
||||||
# This special exception to the GPL applies to versions of the Autoconf
|
|
||||||
# Macro released by the Autoconf Archive. When you make and distribute a
|
|
||||||
# modified version of the Autoconf Macro, you may extend this special
|
|
||||||
# exception to the GPL to apply to your modified version as well.
|
|
||||||
|
|
||||||
#serial 9
|
#serial 11
|
||||||
|
|
||||||
AU_ALIAS([AC_CHECK_DEFINED], [AC_CHECK_DEFINE])
|
AU_ALIAS([AC_CHECK_DEFINED], [AC_CHECK_DEFINE])
|
||||||
AC_DEFUN([AC_CHECK_DEFINE],[
|
AC_DEFUN([AC_CHECK_DEFINE],[
|
||||||
@ -53,6 +32,7 @@ AC_CACHE_CHECK([for $1 defined], ac_var,
|
|||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
|
||||||
#ifdef $1
|
#ifdef $1
|
||||||
int ok;
|
int ok;
|
||||||
|
(void)ok;
|
||||||
#else
|
#else
|
||||||
choke me
|
choke me
|
||||||
#endif
|
#endif
|
||||||
@ -68,6 +48,7 @@ AC_CACHE_CHECK([for $2 defined in $1], ac_var,
|
|||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <$1>]], [[
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <$1>]], [[
|
||||||
#ifdef $2
|
#ifdef $2
|
||||||
int ok;
|
int ok;
|
||||||
|
(void)ok;
|
||||||
#else
|
#else
|
||||||
choke me
|
choke me
|
||||||
#endif
|
#endif
|
||||||
|
15
deps/libsodium/m4/ax_check_gnu_make.m4
vendored
15
deps/libsodium/m4/ax_check_gnu_make.m4
vendored
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# SYNOPSIS
|
# SYNOPSIS
|
||||||
#
|
#
|
||||||
# AX_CHECK_GNU_MAKE()
|
# AX_CHECK_GNU_MAKE([run-if-true],[run-if-false])
|
||||||
#
|
#
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
#
|
#
|
||||||
@ -13,6 +13,10 @@
|
|||||||
# * The makefile variable `ifGNUmake' is set to the empty string, otherwise
|
# * The makefile variable `ifGNUmake' is set to the empty string, otherwise
|
||||||
# it is set to "#". This is useful for including a special features in a
|
# it is set to "#". This is useful for including a special features in a
|
||||||
# Makefile, which cannot be handled by other versions of make.
|
# Makefile, which cannot be handled by other versions of make.
|
||||||
|
# * The makefile variable `ifnGNUmake' is set to #, otherwise
|
||||||
|
# it is set to the empty string. This is useful for including a special
|
||||||
|
# features in a Makefile, which can be handled
|
||||||
|
# by other versions of make or to specify else like clause.
|
||||||
# * The variable `_cv_gnu_make_command` is set to the command to invoke
|
# * The variable `_cv_gnu_make_command` is set to the command to invoke
|
||||||
# GNU make if it exists, the empty string otherwise.
|
# GNU make if it exists, the empty string otherwise.
|
||||||
# * The variable `ax_cv_gnu_make_command` is set to the command to invoke
|
# * The variable `ax_cv_gnu_make_command` is set to the command to invoke
|
||||||
@ -20,6 +24,8 @@
|
|||||||
# * If GNU Make is found, its version is extracted from the output of
|
# * If GNU Make is found, its version is extracted from the output of
|
||||||
# `make --version` as the last field of a record of space-separated
|
# `make --version` as the last field of a record of space-separated
|
||||||
# columns and saved into the variable `ax_check_gnu_make_version`.
|
# columns and saved into the variable `ax_check_gnu_make_version`.
|
||||||
|
# * Additionally if GNU Make is found, run shell code run-if-true
|
||||||
|
# else run shell code run-if-false.
|
||||||
#
|
#
|
||||||
# Here is an example of its use:
|
# Here is an example of its use:
|
||||||
#
|
#
|
||||||
@ -31,6 +37,8 @@
|
|||||||
#
|
#
|
||||||
# @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND)))
|
# @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND)))
|
||||||
# @ifGNUmake@ include $(DEPEND)
|
# @ifGNUmake@ include $(DEPEND)
|
||||||
|
# @ifGNUmake@ else
|
||||||
|
# fallback code
|
||||||
# @ifGNUmake@ endif
|
# @ifGNUmake@ endif
|
||||||
#
|
#
|
||||||
# Then configure.in would normally contain:
|
# Then configure.in would normally contain:
|
||||||
@ -61,7 +69,7 @@
|
|||||||
# and this notice are preserved. This file is offered as-is, without any
|
# and this notice are preserved. This file is offered as-is, without any
|
||||||
# warranty.
|
# warranty.
|
||||||
|
|
||||||
#serial 9
|
#serial 12
|
||||||
|
|
||||||
AC_DEFUN([AX_CHECK_GNU_MAKE],dnl
|
AC_DEFUN([AX_CHECK_GNU_MAKE],dnl
|
||||||
[AC_PROG_AWK
|
[AC_PROG_AWK
|
||||||
@ -79,6 +87,9 @@ dnl Search all the common names for GNU make
|
|||||||
done ;])
|
done ;])
|
||||||
dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, '#' otherwise
|
dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, '#' otherwise
|
||||||
AS_VAR_IF([_cv_gnu_make_command], [""], [AS_VAR_SET([ifGNUmake], ["#"])], [AS_VAR_SET([ifGNUmake], [""])])
|
AS_VAR_IF([_cv_gnu_make_command], [""], [AS_VAR_SET([ifGNUmake], ["#"])], [AS_VAR_SET([ifGNUmake], [""])])
|
||||||
|
AS_VAR_IF([_cv_gnu_make_command], [""], [AS_VAR_SET([ifnGNUmake], [""])], [AS_VAR_SET([ifnGNUmake], ["#"])])
|
||||||
AS_VAR_IF([_cv_gnu_make_command], [""], [AS_UNSET(ax_cv_gnu_make_command)], [AS_VAR_SET([ax_cv_gnu_make_command], [${_cv_gnu_make_command}])])
|
AS_VAR_IF([_cv_gnu_make_command], [""], [AS_UNSET(ax_cv_gnu_make_command)], [AS_VAR_SET([ax_cv_gnu_make_command], [${_cv_gnu_make_command}])])
|
||||||
|
AS_VAR_IF([_cv_gnu_make_command], [""],[$2],[$1])
|
||||||
AC_SUBST([ifGNUmake])
|
AC_SUBST([ifGNUmake])
|
||||||
|
AC_SUBST([ifnGNUmake])
|
||||||
])
|
])
|
||||||
|
12
deps/libsodium/m4/ax_pthread.m4
vendored
12
deps/libsodium/m4/ax_pthread.m4
vendored
@ -87,11 +87,11 @@
|
|||||||
# modified version of the Autoconf Macro, you may extend this special
|
# modified version of the Autoconf Macro, you may extend this special
|
||||||
# exception to the GPL to apply to your modified version as well.
|
# exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
#serial 30
|
#serial 31
|
||||||
|
|
||||||
AU_ALIAS([ACX_PTHREAD], [AX_PTHREAD])
|
AU_ALIAS([ACX_PTHREAD], [AX_PTHREAD])
|
||||||
AC_DEFUN([AX_PTHREAD], [
|
AC_DEFUN([AX_PTHREAD], [
|
||||||
AC_REQUIRE([AC_CANONICAL_TARGET])
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
||||||
AC_REQUIRE([AC_PROG_CC])
|
AC_REQUIRE([AC_PROG_CC])
|
||||||
AC_REQUIRE([AC_PROG_SED])
|
AC_REQUIRE([AC_PROG_SED])
|
||||||
AC_LANG_PUSH([C])
|
AC_LANG_PUSH([C])
|
||||||
@ -158,7 +158,7 @@ ax_pthread_flags="pthreads none -Kthread -pthread -pthreads -mthreads pthread --
|
|||||||
# --thread-safe: KAI C++
|
# --thread-safe: KAI C++
|
||||||
# pthread-config: use pthread-config program (for GNU Pth library)
|
# pthread-config: use pthread-config program (for GNU Pth library)
|
||||||
|
|
||||||
case $target_os in
|
case $host_os in
|
||||||
|
|
||||||
freebsd*)
|
freebsd*)
|
||||||
|
|
||||||
@ -248,7 +248,7 @@ AS_IF([test "x$ax_pthread_clang" = "xyes"],
|
|||||||
# definitions is, on some systems, a strong hint that pthreads support is
|
# definitions is, on some systems, a strong hint that pthreads support is
|
||||||
# correctly enabled
|
# correctly enabled
|
||||||
|
|
||||||
case $target_os in
|
case $host_os in
|
||||||
darwin* | hpux* | linux* | osf* | solaris*)
|
darwin* | hpux* | linux* | osf* | solaris*)
|
||||||
ax_pthread_check_macro="_REENTRANT"
|
ax_pthread_check_macro="_REENTRANT"
|
||||||
;;
|
;;
|
||||||
@ -450,7 +450,7 @@ if test "x$ax_pthread_ok" = "xyes"; then
|
|||||||
AC_CACHE_CHECK([whether more special flags are required for pthreads],
|
AC_CACHE_CHECK([whether more special flags are required for pthreads],
|
||||||
[ax_cv_PTHREAD_SPECIAL_FLAGS],
|
[ax_cv_PTHREAD_SPECIAL_FLAGS],
|
||||||
[ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
[ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
||||||
case $target_os in
|
case $host_os in
|
||||||
solaris*)
|
solaris*)
|
||||||
ax_cv_PTHREAD_SPECIAL_FLAGS="-D_POSIX_PTHREAD_SEMANTICS"
|
ax_cv_PTHREAD_SPECIAL_FLAGS="-D_POSIX_PTHREAD_SEMANTICS"
|
||||||
;;
|
;;
|
||||||
@ -480,7 +480,7 @@ if test "x$ax_pthread_ok" = "xyes"; then
|
|||||||
|
|
||||||
# More AIX lossage: compile with *_r variant
|
# More AIX lossage: compile with *_r variant
|
||||||
if test "x$GCC" != "xyes"; then
|
if test "x$GCC" != "xyes"; then
|
||||||
case $target_os in
|
case $host_os in
|
||||||
aix*)
|
aix*)
|
||||||
AS_CASE(["x/$CC"],
|
AS_CASE(["x/$CC"],
|
||||||
[x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
[x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
||||||
|
4
deps/libsodium/msvc-scripts/Makefile.am
vendored
4
deps/libsodium/msvc-scripts/Makefile.am
vendored
@ -1,4 +0,0 @@
|
|||||||
EXTRA_DIST = \
|
|
||||||
process.bat \
|
|
||||||
rep.vbs \
|
|
||||||
sodium.props
|
|
502
deps/libsodium/msvc-scripts/Makefile.in
vendored
502
deps/libsodium/msvc-scripts/Makefile.in
vendored
@ -1,502 +0,0 @@
|
|||||||
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
|
||||||
# @configure_input@
|
|
||||||
|
|
||||||
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
@SET_MAKE@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
am__is_gnu_make = { \
|
|
||||||
if test -z '$(MAKELEVEL)'; then \
|
|
||||||
false; \
|
|
||||||
elif test -n '$(MAKE_HOST)'; then \
|
|
||||||
true; \
|
|
||||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
|
||||||
true; \
|
|
||||||
else \
|
|
||||||
false; \
|
|
||||||
fi; \
|
|
||||||
}
|
|
||||||
am__make_running_with_option = \
|
|
||||||
case $${target_option-} in \
|
|
||||||
?) ;; \
|
|
||||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
|
||||||
"target option '$${target_option-}' specified" >&2; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
has_opt=no; \
|
|
||||||
sane_makeflags=$$MAKEFLAGS; \
|
|
||||||
if $(am__is_gnu_make); then \
|
|
||||||
sane_makeflags=$$MFLAGS; \
|
|
||||||
else \
|
|
||||||
case $$MAKEFLAGS in \
|
|
||||||
*\\[\ \ ]*) \
|
|
||||||
bs=\\; \
|
|
||||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
|
||||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
|
||||||
esac; \
|
|
||||||
fi; \
|
|
||||||
skip_next=no; \
|
|
||||||
strip_trailopt () \
|
|
||||||
{ \
|
|
||||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
|
||||||
}; \
|
|
||||||
for flg in $$sane_makeflags; do \
|
|
||||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
|
||||||
case $$flg in \
|
|
||||||
*=*|--*) continue;; \
|
|
||||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
|
||||||
-*I?*) strip_trailopt 'I';; \
|
|
||||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
|
||||||
-*O?*) strip_trailopt 'O';; \
|
|
||||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
|
||||||
-*l?*) strip_trailopt 'l';; \
|
|
||||||
-[dEDm]) skip_next=yes;; \
|
|
||||||
-[JT]) skip_next=yes;; \
|
|
||||||
esac; \
|
|
||||||
case $$flg in \
|
|
||||||
*$$target_option*) has_opt=yes; break;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
test $$has_opt = yes
|
|
||||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
|
||||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@
|
|
||||||
pkgincludedir = $(includedir)/@PACKAGE@
|
|
||||||
pkglibdir = $(libdir)/@PACKAGE@
|
|
||||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = @build@
|
|
||||||
host_triplet = @host@
|
|
||||||
target_triplet = @target@
|
|
||||||
subdir = msvc-scripts
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_add_fortify_source.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_check_catchable_abrt.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_check_catchable_segv.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_check_define.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_check_link_flag.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_pthread.m4 $(top_srcdir)/m4/ax_tls.m4 \
|
|
||||||
$(top_srcdir)/m4/ax_valgrind_check.m4 \
|
|
||||||
$(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
|
|
||||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
|
||||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
|
||||||
$(top_srcdir)/configure.ac
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
CONFIG_CLEAN_VPATH_FILES =
|
|
||||||
AM_V_P = $(am__v_P_@AM_V@)
|
|
||||||
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
||||||
am__v_P_0 = false
|
|
||||||
am__v_P_1 = :
|
|
||||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
|
||||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
|
||||||
am__v_GEN_0 = @echo " GEN " $@;
|
|
||||||
am__v_GEN_1 =
|
|
||||||
AM_V_at = $(am__v_at_@AM_V@)
|
|
||||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|
||||||
am__v_at_0 = @
|
|
||||||
am__v_at_1 =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
am__can_run_installinfo = \
|
|
||||||
case $$AM_UPDATE_INFO_DIR in \
|
|
||||||
n|no|NO) false;; \
|
|
||||||
*) (install-info --version) >/dev/null 2>&1;; \
|
|
||||||
esac
|
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
|
||||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = @ACLOCAL@
|
|
||||||
ALLOCA = @ALLOCA@
|
|
||||||
AMTAR = @AMTAR@
|
|
||||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
||||||
AR = @AR@
|
|
||||||
AUTOCONF = @AUTOCONF@
|
|
||||||
AUTOHEADER = @AUTOHEADER@
|
|
||||||
AUTOMAKE = @AUTOMAKE@
|
|
||||||
AWK = @AWK@
|
|
||||||
CC = @CC@
|
|
||||||
CCAS = @CCAS@
|
|
||||||
CCASDEPMODE = @CCASDEPMODE@
|
|
||||||
CCASFLAGS = @CCASFLAGS@
|
|
||||||
CCDEPMODE = @CCDEPMODE@
|
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
|
||||||
CFLAGS_MMX = @CFLAGS_MMX@
|
|
||||||
CFLAGS_PCLMUL = @CFLAGS_PCLMUL@
|
|
||||||
CFLAGS_RDRAND = @CFLAGS_RDRAND@
|
|
||||||
CFLAGS_SSE2 = @CFLAGS_SSE2@
|
|
||||||
CFLAGS_SSE3 = @CFLAGS_SSE3@
|
|
||||||
CFLAGS_SSE41 = @CFLAGS_SSE41@
|
|
||||||
CFLAGS_SSSE3 = @CFLAGS_SSSE3@
|
|
||||||
CPP = @CPP@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
CSCOPE = @CSCOPE@
|
|
||||||
CTAGS = @CTAGS@
|
|
||||||
CWFLAGS = @CWFLAGS@
|
|
||||||
CYGPATH_W = @CYGPATH_W@
|
|
||||||
DEFS = @DEFS@
|
|
||||||
DEPDIR = @DEPDIR@
|
|
||||||
DLLTOOL = @DLLTOOL@
|
|
||||||
DLL_VERSION = @DLL_VERSION@
|
|
||||||
DSYMUTIL = @DSYMUTIL@
|
|
||||||
DUMPBIN = @DUMPBIN@
|
|
||||||
ECHO_C = @ECHO_C@
|
|
||||||
ECHO_N = @ECHO_N@
|
|
||||||
ECHO_T = @ECHO_T@
|
|
||||||
EGREP = @EGREP@
|
|
||||||
ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@
|
|
||||||
ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@
|
|
||||||
ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@
|
|
||||||
ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@
|
|
||||||
ETAGS = @ETAGS@
|
|
||||||
EXEEXT = @EXEEXT@
|
|
||||||
FGREP = @FGREP@
|
|
||||||
FILECMD = @FILECMD@
|
|
||||||
GREP = @GREP@
|
|
||||||
HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@
|
|
||||||
HAVE_AVX_ASM_V = @HAVE_AVX_ASM_V@
|
|
||||||
HAVE_CPUID_V = @HAVE_CPUID_V@
|
|
||||||
HAVE_TI_MODE_V = @HAVE_TI_MODE_V@
|
|
||||||
INSTALL = @INSTALL@
|
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
||||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
|
||||||
LD = @LD@
|
|
||||||
LDFLAGS = @LDFLAGS@
|
|
||||||
LIBOBJS = @LIBOBJS@
|
|
||||||
LIBS = @LIBS@
|
|
||||||
LIBTOOL = @LIBTOOL@
|
|
||||||
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
|
||||||
LIBTOOL_EXTRA_FLAGS = @LIBTOOL_EXTRA_FLAGS@
|
|
||||||
LIPO = @LIPO@
|
|
||||||
LN_S = @LN_S@
|
|
||||||
LTLIBOBJS = @LTLIBOBJS@
|
|
||||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
|
||||||
MAINT = @MAINT@
|
|
||||||
MAKEINFO = @MAKEINFO@
|
|
||||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
|
||||||
MKDIR_P = @MKDIR_P@
|
|
||||||
NM = @NM@
|
|
||||||
NMEDIT = @NMEDIT@
|
|
||||||
OBJDUMP = @OBJDUMP@
|
|
||||||
OBJEXT = @OBJEXT@
|
|
||||||
OTOOL = @OTOOL@
|
|
||||||
OTOOL64 = @OTOOL64@
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
||||||
PACKAGE_NAME = @PACKAGE_NAME@
|
|
||||||
PACKAGE_STRING = @PACKAGE_STRING@
|
|
||||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
|
||||||
PACKAGE_URL = @PACKAGE_URL@
|
|
||||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
||||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
|
||||||
PKGCONFIG_LIBS_PRIVATE = @PKGCONFIG_LIBS_PRIVATE@
|
|
||||||
PTHREAD_CC = @PTHREAD_CC@
|
|
||||||
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
|
|
||||||
PTHREAD_CXX = @PTHREAD_CXX@
|
|
||||||
PTHREAD_LIBS = @PTHREAD_LIBS@
|
|
||||||
RANLIB = @RANLIB@
|
|
||||||
SAFECODE_HOME = @SAFECODE_HOME@
|
|
||||||
SED = @SED@
|
|
||||||
SET_MAKE = @SET_MAKE@
|
|
||||||
SHELL = @SHELL@
|
|
||||||
SODIUM_LIBRARY_MINIMAL_DEF = @SODIUM_LIBRARY_MINIMAL_DEF@
|
|
||||||
SODIUM_LIBRARY_VERSION = @SODIUM_LIBRARY_VERSION@
|
|
||||||
SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
|
|
||||||
SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
|
|
||||||
STRIP = @STRIP@
|
|
||||||
TEST_LDFLAGS = @TEST_LDFLAGS@
|
|
||||||
VALGRIND = @VALGRIND@
|
|
||||||
VALGRIND_ENABLED = @VALGRIND_ENABLED@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
abs_builddir = @abs_builddir@
|
|
||||||
abs_srcdir = @abs_srcdir@
|
|
||||||
abs_top_builddir = @abs_top_builddir@
|
|
||||||
abs_top_srcdir = @abs_top_srcdir@
|
|
||||||
ac_ct_AR = @ac_ct_AR@
|
|
||||||
ac_ct_CC = @ac_ct_CC@
|
|
||||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
|
||||||
am__include = @am__include@
|
|
||||||
am__leading_dot = @am__leading_dot@
|
|
||||||
am__quote = @am__quote@
|
|
||||||
am__tar = @am__tar@
|
|
||||||
am__untar = @am__untar@
|
|
||||||
ax_pthread_config = @ax_pthread_config@
|
|
||||||
bindir = @bindir@
|
|
||||||
build = @build@
|
|
||||||
build_alias = @build_alias@
|
|
||||||
build_cpu = @build_cpu@
|
|
||||||
build_os = @build_os@
|
|
||||||
build_vendor = @build_vendor@
|
|
||||||
builddir = @builddir@
|
|
||||||
datadir = @datadir@
|
|
||||||
datarootdir = @datarootdir@
|
|
||||||
docdir = @docdir@
|
|
||||||
dvidir = @dvidir@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
host = @host@
|
|
||||||
host_alias = @host_alias@
|
|
||||||
host_cpu = @host_cpu@
|
|
||||||
host_os = @host_os@
|
|
||||||
host_vendor = @host_vendor@
|
|
||||||
htmldir = @htmldir@
|
|
||||||
includedir = @includedir@
|
|
||||||
infodir = @infodir@
|
|
||||||
install_sh = @install_sh@
|
|
||||||
libdir = @libdir@
|
|
||||||
libexecdir = @libexecdir@
|
|
||||||
localedir = @localedir@
|
|
||||||
localstatedir = @localstatedir@
|
|
||||||
mandir = @mandir@
|
|
||||||
mkdir_p = @mkdir_p@
|
|
||||||
oldincludedir = @oldincludedir@
|
|
||||||
pdfdir = @pdfdir@
|
|
||||||
prefix = @prefix@
|
|
||||||
program_transform_name = @program_transform_name@
|
|
||||||
psdir = @psdir@
|
|
||||||
runstatedir = @runstatedir@
|
|
||||||
sbindir = @sbindir@
|
|
||||||
sharedstatedir = @sharedstatedir@
|
|
||||||
srcdir = @srcdir@
|
|
||||||
sysconfdir = @sysconfdir@
|
|
||||||
target = @target@
|
|
||||||
target_alias = @target_alias@
|
|
||||||
target_cpu = @target_cpu@
|
|
||||||
target_os = @target_os@
|
|
||||||
target_vendor = @target_vendor@
|
|
||||||
top_build_prefix = @top_build_prefix@
|
|
||||||
top_builddir = @top_builddir@
|
|
||||||
top_srcdir = @top_srcdir@
|
|
||||||
valgrind_enabled_tools = @valgrind_enabled_tools@
|
|
||||||
valgrind_tools = @valgrind_tools@
|
|
||||||
EXTRA_DIST = \
|
|
||||||
process.bat \
|
|
||||||
rep.vbs \
|
|
||||||
sodium.props
|
|
||||||
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
|
||||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign msvc-scripts/Makefile'; \
|
|
||||||
$(am__cd) $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign msvc-scripts/Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(am__aclocal_m4_deps):
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
tags TAGS:
|
|
||||||
|
|
||||||
ctags CTAGS:
|
|
||||||
|
|
||||||
cscope cscopelist:
|
|
||||||
|
|
||||||
distdir: $(BUILT_SOURCES)
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
|
||||||
|
|
||||||
distdir-am: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
||||||
list='$(DISTFILES)'; \
|
|
||||||
dist_files=`for file in $$list; do echo $$file; done | \
|
|
||||||
sed -e "s|^$$srcdirstrip/||;t" \
|
|
||||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
|
||||||
case $$dist_files in \
|
|
||||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
|
||||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
|
||||||
sort -u` ;; \
|
|
||||||
esac; \
|
|
||||||
for file in $$dist_files; do \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test -d "$(distdir)/$$file"; then \
|
|
||||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
||||||
fi; \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
||||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
||||||
fi; \
|
|
||||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f "$(distdir)/$$file" \
|
|
||||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
if test -z '$(STRIP)'; then \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
install; \
|
|
||||||
else \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
|
||||||
fi
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
html-am:
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-dvi: install-dvi-am
|
|
||||||
|
|
||||||
install-dvi-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-html: install-html-am
|
|
||||||
|
|
||||||
install-html-am:
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-info-am:
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
install-pdf: install-pdf-am
|
|
||||||
|
|
||||||
install-pdf-am:
|
|
||||||
|
|
||||||
install-ps: install-ps-am
|
|
||||||
|
|
||||||
install-ps-am:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am:
|
|
||||||
|
|
||||||
.MAKE: install-am install-strip
|
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
|
||||||
cscopelist-am ctags-am distclean distclean-generic \
|
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
|
||||||
install install-am install-data install-data-am install-dvi \
|
|
||||||
install-dvi-am install-exec install-exec-am install-html \
|
|
||||||
install-html-am install-info install-info-am install-man \
|
|
||||||
install-pdf install-pdf-am install-ps install-ps-am \
|
|
||||||
install-strip installcheck installcheck-am installdirs \
|
|
||||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
||||||
tags-am uninstall uninstall-am
|
|
||||||
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
|
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
5
deps/libsodium/msvc-scripts/process.bat
vendored
5
deps/libsodium/msvc-scripts/process.bat
vendored
@ -1,5 +0,0 @@
|
|||||||
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.18/ < src\libsodium\include\sodium\version.h.in > tmp
|
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/10/ < tmp > tmp2
|
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/3/ < tmp2 > tmp3
|
|
||||||
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > src\libsodium\include\sodium\version.h
|
|
||||||
del tmp tmp2 tmp3
|
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>libsodium</PackageId>
|
<PackageId>libsodium</PackageId>
|
||||||
<Version>1.0.18.4</Version>
|
<Version>1.0.19.0</Version>
|
||||||
<Authors>Frank Denis</Authors>
|
<Authors>Frank Denis</Authors>
|
||||||
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
|
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
|
||||||
<Copyright>© $([System.DateTime]::UtcNow.ToString(yyyy)) Frank Denis</Copyright>
|
<Copyright>© $([System.DateTime]::UtcNow.ToString(yyyy)) Frank Denis</Copyright>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- These values are populated into the package.gsl templates by package.bat. -->
|
<!-- These values are populated into the package.gsl templates by package.bat. -->
|
||||||
<!-- The target attribute controls path and file name only, id controls package naming. -->
|
<!-- The target attribute controls path and file name only, id controls package naming. -->
|
||||||
<package id="libsodium_vc120" target="libsodium" version = "1.0.18.4" pathversion="1_0_18_4" platformtoolset="v120" />
|
<package id="libsodium_vc120" target="libsodium" version = "1.0.19.0" pathversion="1_0_19_0" platformtoolset="v120" />
|
||||||
|
62
deps/libsodium/regen-msvc/libsodium.vcxproj.tpl
vendored
62
deps/libsodium/regen-msvc/libsodium.vcxproj.tpl
vendored
@ -1,59 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
<ProjectGuid>{A185B162-6CB6-4502-B03F-B56F7699A8D9}</ProjectGuid>
|
||||||
<ProjectName>libsodium</ProjectName>
|
<ProjectName>libsodium</ProjectName>
|
||||||
<PlatformToolset>{{platform}}</PlatformToolset>
|
<PlatformToolset>{{platform}}</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="DebugDLL|Win32">
|
{{configurations}}
|
||||||
<Configuration>DebugDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseDLL|Win32">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugDLL|x64">
|
|
||||||
<Configuration>DebugDLL</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseDLL|x64">
|
|
||||||
<Configuration>ReleaseDLL</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|Win32">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|Win32">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLTCG|x64">
|
|
||||||
<Configuration>DebugLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLTCG|x64">
|
|
||||||
<Configuration>ReleaseLTCG</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|Win32">
|
|
||||||
<Configuration>DebugLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLIB|Win32">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="DebugLIB|x64">
|
|
||||||
<Configuration>DebugLIB</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseLIB|x64">
|
|
||||||
<Configuration>ReleaseLIB</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
<ConfigurationType Condition="$(Configuration.IndexOf('DLL')) == -1">StaticLibrary</ConfigurationType>
|
||||||
@ -66,16 +20,6 @@
|
|||||||
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
<Import Project="$(ProjectDir)..\..\properties\Output.props" />
|
||||||
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
<Import Project="$(ProjectDir)$(ProjectName).props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.bat" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.config" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.gsl" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.nuspec" />
|
|
||||||
<None Include="..\..\..\..\packaging\nuget\package.targets" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Xml Include="..\..\..\..\packaging\nuget\package.xml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
{{v1}}
|
{{v1}}
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
55
deps/libsodium/regen-msvc/regen-msvc.py
vendored
55
deps/libsodium/regen-msvc/regen-msvc.py
vendored
@ -9,24 +9,24 @@ dirs = set()
|
|||||||
tlv1 = ""
|
tlv1 = ""
|
||||||
for file in glob.iglob("src/libsodium/**/*.c", recursive=True):
|
for file in glob.iglob("src/libsodium/**/*.c", recursive=True):
|
||||||
file = file.replace("/", "\\")
|
file = file.replace("/", "\\")
|
||||||
tlv1 = tlv1 + ' <ClCompile Include="{}" />\r\n'.format(file)
|
tlv1 = tlv1 + ' <ClCompile Include="..\\..\\{}" />\r\n'.format(file)
|
||||||
|
|
||||||
tlv2 = ""
|
tlv2 = ""
|
||||||
for file in glob.iglob("src/libsodium/**/*.h", recursive=True):
|
for file in glob.iglob("src/libsodium/**/*.h", recursive=True):
|
||||||
file = file.replace("/", "\\")
|
file = file.replace("/", "\\")
|
||||||
tlv2 = tlv2 + ' <ClInclude Include="{}" />\r\n'.format(file)
|
tlv2 = tlv2 + ' <ClInclude Include="..\\..\\{}" />\r\n'.format(file)
|
||||||
|
|
||||||
tlf1 = ""
|
tlf1 = ""
|
||||||
for file in glob.iglob("src/libsodium/**/*.c", recursive=True):
|
for file in glob.iglob("src/libsodium/**/*.c", recursive=True):
|
||||||
file = file.replace("/", "\\")
|
file = file.replace("/", "\\")
|
||||||
tlf1 = tlf1 + ' <ClCompile Include="{}">\r\n'.format(file)
|
tlf1 = tlf1 + ' <ClCompile Include="..\\..\\{}">\r\n'.format(file)
|
||||||
tlf1 = tlf1 + " <Filter>Source Files</Filter>\r\n"
|
tlf1 = tlf1 + " <Filter>Source Files</Filter>\r\n"
|
||||||
tlf1 = tlf1 + " </ClCompile>\r\n"
|
tlf1 = tlf1 + " </ClCompile>\r\n"
|
||||||
|
|
||||||
tlf2 = ""
|
tlf2 = ""
|
||||||
for file in glob.iglob("src/libsodium/**/*.h", recursive=True):
|
for file in glob.iglob("src/libsodium/**/*.h", recursive=True):
|
||||||
file = file.replace("/", "\\")
|
file = file.replace("/", "\\")
|
||||||
tlf2 = tlf2 + ' <ClInclude Include="{}">\r\n'.format(file)
|
tlf2 = tlf2 + ' <ClInclude Include="..\\..\\{}">\r\n'.format(file)
|
||||||
tlf2 = tlf2 + " <Filter>Header Files</Filter>\r\n"
|
tlf2 = tlf2 + " <Filter>Header Files</Filter>\r\n"
|
||||||
tlf2 = tlf2 + " </ClInclude>\r\n"
|
tlf2 = tlf2 + " </ClInclude>\r\n"
|
||||||
|
|
||||||
@ -77,6 +77,39 @@ for dir in dirs:
|
|||||||
fd = fd + " </Filter>\r\n"
|
fd = fd + " </Filter>\r\n"
|
||||||
|
|
||||||
|
|
||||||
|
def get_project_configurations(vs_version):
|
||||||
|
projconfig = ""
|
||||||
|
configs = [
|
||||||
|
"DebugDLL",
|
||||||
|
"ReleaseDLL",
|
||||||
|
"DebugLIB",
|
||||||
|
"ReleaseLIB",
|
||||||
|
"DebugLTCG",
|
||||||
|
"ReleaseLTCG",
|
||||||
|
]
|
||||||
|
platforms = ["Win32", "x64"]
|
||||||
|
# add arm64 platform only for v142+ toolchain
|
||||||
|
if vs_version >= 142:
|
||||||
|
platforms.append("ARM64")
|
||||||
|
for config in configs:
|
||||||
|
for platform in platforms:
|
||||||
|
projconfig = (
|
||||||
|
projconfig
|
||||||
|
+ ' <ProjectConfiguration Include="{}|{}">\r\n'.format(
|
||||||
|
config, platform
|
||||||
|
)
|
||||||
|
)
|
||||||
|
projconfig = (
|
||||||
|
projconfig
|
||||||
|
+ " <Configuration>{}</Configuration>\r\n".format(config)
|
||||||
|
)
|
||||||
|
projconfig = projconfig + " <Platform>{}</Platform>\r\n".format(
|
||||||
|
platform
|
||||||
|
)
|
||||||
|
projconfig = projconfig + " </ProjectConfiguration>\r\n"
|
||||||
|
return projconfig
|
||||||
|
|
||||||
|
|
||||||
def apply_template(tplfile, outfile, sbox):
|
def apply_template(tplfile, outfile, sbox):
|
||||||
tpl = ""
|
tpl = ""
|
||||||
with open(tplfile, "rb") as fd:
|
with open(tplfile, "rb") as fd:
|
||||||
@ -105,11 +138,14 @@ sbox = {
|
|||||||
sd = os.path.dirname(os.path.realpath(__file__))
|
sd = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/tl_libsodium.vcxproj.filters.tpl", "libsodium.vcxproj.filters", sbox
|
sd + "/tl_libsodium.vcxproj.filters.tpl",
|
||||||
|
"ci/appveyor/libsodium.vcxproj.filters",
|
||||||
|
sbox,
|
||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v140"})
|
sbox.update({"platform": "v140"})
|
||||||
apply_template(sd + "/tl_libsodium.vcxproj.tpl", "libsodium.vcxproj", sbox)
|
sbox.update({"configurations": get_project_configurations(140)})
|
||||||
|
apply_template(sd + "/tl_libsodium.vcxproj.tpl", "ci/appveyor/libsodium.vcxproj", sbox)
|
||||||
|
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.filters.tpl",
|
sd + "/libsodium.vcxproj.filters.tpl",
|
||||||
@ -148,6 +184,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v143"})
|
sbox.update({"platform": "v143"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(143)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2022/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2022/libsodium/libsodium.vcxproj",
|
||||||
@ -155,6 +192,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v142"})
|
sbox.update({"platform": "v142"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(142)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2019/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2019/libsodium/libsodium.vcxproj",
|
||||||
@ -162,6 +200,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v141"})
|
sbox.update({"platform": "v141"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(141)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2017/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2017/libsodium/libsodium.vcxproj",
|
||||||
@ -169,6 +208,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v140"})
|
sbox.update({"platform": "v140"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(140)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2015/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2015/libsodium/libsodium.vcxproj",
|
||||||
@ -176,6 +216,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v120"})
|
sbox.update({"platform": "v120"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(120)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2013/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2013/libsodium/libsodium.vcxproj",
|
||||||
@ -183,6 +224,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v110"})
|
sbox.update({"platform": "v110"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(110)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2012/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2012/libsodium/libsodium.vcxproj",
|
||||||
@ -190,6 +232,7 @@ apply_template(
|
|||||||
)
|
)
|
||||||
|
|
||||||
sbox.update({"platform": "v100"})
|
sbox.update({"platform": "v100"})
|
||||||
|
sbox.update({"configurations": get_project_configurations(100)})
|
||||||
apply_template(
|
apply_template(
|
||||||
sd + "/libsodium.vcxproj.tpl",
|
sd + "/libsodium.vcxproj.tpl",
|
||||||
"builds/msvc/vs2010/libsodium/libsodium.vcxproj",
|
"builds/msvc/vs2010/libsodium/libsodium.vcxproj",
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0"
|
||||||
|
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="DebugDLL|Win32">
|
<ProjectConfiguration Include="DebugDLL|Win32">
|
||||||
<Configuration>DebugDLL</Configuration>
|
<Configuration>DebugDLL</Configuration>
|
||||||
@ -181,7 +182,7 @@
|
|||||||
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>SODIUM_STATIC;SODIUM_EXPORT=;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
@ -197,7 +198,7 @@
|
|||||||
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>SODIUM_EXPORT=__declspec(dllexport);SODIUM_DLL_EXPORT;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(SolutionDir)..\..\;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
@ -246,7 +247,7 @@
|
|||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
@ -267,7 +268,7 @@
|
|||||||
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||||
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include\sodium;$(SolutionDir)src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include\sodium;$(SolutionDir)..\..\src\libsodium\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
@ -319,10 +320,10 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
{{tlv2}}
|
{{tlv2}}
|
||||||
<ClInclude Include="builds\msvc\resource.h" />
|
<ClInclude Include="..\..\builds\msvc\resource.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="builds\msvc\resource.rc">
|
<ResourceCompile Include="..\..\builds\msvc\resource.rc">
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
1
deps/libsodium/src/Makefile.in
vendored
1
deps/libsodium/src/Makefile.in
vendored
@ -204,6 +204,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
|
42
deps/libsodium/src/libsodium/Makefile.am
vendored
42
deps/libsodium/src/libsodium/Makefile.am
vendored
@ -2,8 +2,19 @@ lib_LTLIBRARIES = \
|
|||||||
libsodium.la
|
libsodium.la
|
||||||
|
|
||||||
libsodium_la_SOURCES = \
|
libsodium_la_SOURCES = \
|
||||||
crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
|
crypto_aead/aegis128l/aead_aegis128l.c \
|
||||||
crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
|
crypto_aead/aegis128l/aegis128l_common.h \
|
||||||
|
crypto_aead/aegis128l/aegis128l_soft.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_soft.h \
|
||||||
|
crypto_aead/aegis128l/implementations.h \
|
||||||
|
crypto_aead/aegis256/aead_aegis256.c \
|
||||||
|
crypto_aead/aegis256/aegis256_common.h \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.c \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.h \
|
||||||
|
crypto_aead/aegis256/implementations.h \
|
||||||
|
crypto_aead/aes256gcm/aead_aes256gcm.c \
|
||||||
|
crypto_aead/chacha20poly1305/aead_chacha20poly1305.c \
|
||||||
|
crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c \
|
||||||
crypto_auth/crypto_auth.c \
|
crypto_auth/crypto_auth.c \
|
||||||
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
||||||
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
||||||
@ -17,6 +28,7 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
||||||
crypto_core/hsalsa20/core_hsalsa20.c \
|
crypto_core/hsalsa20/core_hsalsa20.c \
|
||||||
crypto_core/salsa/ref/core_salsa_ref.c \
|
crypto_core/salsa/ref/core_salsa_ref.c \
|
||||||
|
crypto_core/softaes/softaes.c \
|
||||||
crypto_generichash/crypto_generichash.c \
|
crypto_generichash/crypto_generichash.c \
|
||||||
crypto_generichash/blake2b/generichash_blake2.c \
|
crypto_generichash/blake2b/generichash_blake2.c \
|
||||||
crypto_generichash/blake2b/ref/blake2.h \
|
crypto_generichash/blake2b/ref/blake2.h \
|
||||||
@ -33,6 +45,8 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
||||||
crypto_kdf/blake2b/kdf_blake2b.c \
|
crypto_kdf/blake2b/kdf_blake2b.c \
|
||||||
crypto_kdf/crypto_kdf.c \
|
crypto_kdf/crypto_kdf.c \
|
||||||
|
crypto_kdf/hkdf/kdf_hkdf_sha256.c \
|
||||||
|
crypto_kdf/hkdf/kdf_hkdf_sha512.c \
|
||||||
crypto_kx/crypto_kx.c \
|
crypto_kx/crypto_kx.c \
|
||||||
crypto_onetimeauth/crypto_onetimeauth.c \
|
crypto_onetimeauth/crypto_onetimeauth.c \
|
||||||
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
||||||
@ -81,13 +95,15 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_stream/salsa20/stream_salsa20.c \
|
crypto_stream/salsa20/stream_salsa20.c \
|
||||||
crypto_stream/salsa20/stream_salsa20.h \
|
crypto_stream/salsa20/stream_salsa20.h \
|
||||||
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
||||||
crypto_verify/sodium/verify.c \
|
crypto_verify/verify.c \
|
||||||
|
include/sodium/private/asm_cet.h \
|
||||||
include/sodium/private/chacha20_ietf_ext.h \
|
include/sodium/private/chacha20_ietf_ext.h \
|
||||||
include/sodium/private/common.h \
|
include/sodium/private/common.h \
|
||||||
include/sodium/private/ed25519_ref10.h \
|
include/sodium/private/ed25519_ref10.h \
|
||||||
include/sodium/private/implementations.h \
|
include/sodium/private/implementations.h \
|
||||||
include/sodium/private/mutex.h \
|
include/sodium/private/mutex.h \
|
||||||
include/sodium/private/sse2_64_32.h \
|
include/sodium/private/sse2_64_32.h \
|
||||||
|
include/sodium/private/softaes.h \
|
||||||
randombytes/randombytes.c \
|
randombytes/randombytes.c \
|
||||||
sodium/codecs.c \
|
sodium/codecs.c \
|
||||||
sodium/core.c \
|
sodium/core.c \
|
||||||
@ -194,8 +210,8 @@ endif
|
|||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
include
|
include
|
||||||
|
|
||||||
libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
|
libsodium_la_LIBADD = libaesni.la libarmcrypto.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
|
||||||
noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
|
noinst_LTLIBRARIES = libaesni.la libarmcrypto.la libsse2.la libssse3.la libsse41.la libavx2.la libavx512f.la
|
||||||
|
|
||||||
librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
@ -211,10 +227,24 @@ libsodium_la_SOURCES += \
|
|||||||
randombytes/sysrandom/randombytes_sysrandom.c
|
randombytes/sysrandom/randombytes_sysrandom.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
libarmcrypto_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
|
libarmcrypto_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
|
@CFLAGS_ARMCRYPTO@
|
||||||
|
libarmcrypto_la_SOURCES = \
|
||||||
|
crypto_aead/aegis128l/aegis128l_armcrypto.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_armcrypto.h \
|
||||||
|
crypto_aead/aegis256/aegis256_armcrypto.c \
|
||||||
|
crypto_aead/aegis256/aegis256_armcrypto.h \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
|
||||||
|
|
||||||
libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
@CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
|
@CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AVX@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
|
||||||
libaesni_la_SOURCES = \
|
libaesni_la_SOURCES = \
|
||||||
|
crypto_aead/aegis128l/aegis128l_aesni.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_aesni.h \
|
||||||
|
crypto_aead/aegis256/aegis256_aesni.c \
|
||||||
|
crypto_aead/aegis256/aegis256_aesni.h \
|
||||||
crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
||||||
|
|
||||||
libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
|
523
deps/libsodium/src/libsodium/Makefile.in
vendored
523
deps/libsodium/src/libsodium/Makefile.in
vendored
@ -219,7 +219,10 @@ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(defexecdir)"
|
|||||||
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||||
libaesni_la_LIBADD =
|
libaesni_la_LIBADD =
|
||||||
am__dirstamp = $(am__leading_dot)dirstamp
|
am__dirstamp = $(am__leading_dot)dirstamp
|
||||||
am_libaesni_la_OBJECTS = crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo
|
am_libaesni_la_OBJECTS = \
|
||||||
|
crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo \
|
||||||
|
crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo \
|
||||||
|
crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo
|
||||||
libaesni_la_OBJECTS = $(am_libaesni_la_OBJECTS)
|
libaesni_la_OBJECTS = $(am_libaesni_la_OBJECTS)
|
||||||
AM_V_lt = $(am__v_lt_@AM_V@)
|
AM_V_lt = $(am__v_lt_@AM_V@)
|
||||||
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||||
@ -228,6 +231,16 @@ am__v_lt_1 =
|
|||||||
libaesni_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
libaesni_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||||
$(libaesni_la_LDFLAGS) $(LDFLAGS) -o $@
|
$(libaesni_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
|
libarmcrypto_la_LIBADD =
|
||||||
|
am_libarmcrypto_la_OBJECTS = \
|
||||||
|
crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo \
|
||||||
|
crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo
|
||||||
|
libarmcrypto_la_OBJECTS = $(am_libarmcrypto_la_OBJECTS)
|
||||||
|
libarmcrypto_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
|
||||||
|
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
||||||
|
$(AM_CFLAGS) $(CFLAGS) $(libarmcrypto_la_LDFLAGS) $(LDFLAGS) \
|
||||||
|
-o $@
|
||||||
libavx2_la_LIBADD =
|
libavx2_la_LIBADD =
|
||||||
am_libavx2_la_OBJECTS = crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo \
|
am_libavx2_la_OBJECTS = crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo \
|
||||||
crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo \
|
crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo \
|
||||||
@ -250,11 +263,23 @@ librdrand_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|||||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||||
$(librdrand_la_LDFLAGS) $(LDFLAGS) -o $@
|
$(librdrand_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
@EMSCRIPTEN_FALSE@am_librdrand_la_rpath =
|
@EMSCRIPTEN_FALSE@am_librdrand_la_rpath =
|
||||||
libsodium_la_DEPENDENCIES = libaesni.la libsse2.la libssse3.la \
|
libsodium_la_DEPENDENCIES = libaesni.la libarmcrypto.la libsse2.la \
|
||||||
libsse41.la libavx2.la libavx512f.la $(am__append_8)
|
libssse3.la libsse41.la libavx2.la libavx512f.la \
|
||||||
|
$(am__append_8)
|
||||||
am__libsodium_la_SOURCES_DIST = \
|
am__libsodium_la_SOURCES_DIST = \
|
||||||
crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
|
crypto_aead/aegis128l/aead_aegis128l.c \
|
||||||
crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
|
crypto_aead/aegis128l/aegis128l_common.h \
|
||||||
|
crypto_aead/aegis128l/aegis128l_soft.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_soft.h \
|
||||||
|
crypto_aead/aegis128l/implementations.h \
|
||||||
|
crypto_aead/aegis256/aead_aegis256.c \
|
||||||
|
crypto_aead/aegis256/aegis256_common.h \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.c \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.h \
|
||||||
|
crypto_aead/aegis256/implementations.h \
|
||||||
|
crypto_aead/aes256gcm/aead_aes256gcm.c \
|
||||||
|
crypto_aead/chacha20poly1305/aead_chacha20poly1305.c \
|
||||||
|
crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c \
|
||||||
crypto_auth/crypto_auth.c \
|
crypto_auth/crypto_auth.c \
|
||||||
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
||||||
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
||||||
@ -267,6 +292,7 @@ am__libsodium_la_SOURCES_DIST = \
|
|||||||
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
||||||
crypto_core/hsalsa20/core_hsalsa20.c \
|
crypto_core/hsalsa20/core_hsalsa20.c \
|
||||||
crypto_core/salsa/ref/core_salsa_ref.c \
|
crypto_core/salsa/ref/core_salsa_ref.c \
|
||||||
|
crypto_core/softaes/softaes.c \
|
||||||
crypto_generichash/crypto_generichash.c \
|
crypto_generichash/crypto_generichash.c \
|
||||||
crypto_generichash/blake2b/generichash_blake2.c \
|
crypto_generichash/blake2b/generichash_blake2.c \
|
||||||
crypto_generichash/blake2b/ref/blake2.h \
|
crypto_generichash/blake2b/ref/blake2.h \
|
||||||
@ -281,7 +307,9 @@ am__libsodium_la_SOURCES_DIST = \
|
|||||||
crypto_hash/sha512/hash_sha512.c \
|
crypto_hash/sha512/hash_sha512.c \
|
||||||
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
||||||
crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \
|
crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \
|
||||||
crypto_kx/crypto_kx.c crypto_onetimeauth/crypto_onetimeauth.c \
|
crypto_kdf/hkdf/kdf_hkdf_sha256.c \
|
||||||
|
crypto_kdf/hkdf/kdf_hkdf_sha512.c crypto_kx/crypto_kx.c \
|
||||||
|
crypto_onetimeauth/crypto_onetimeauth.c \
|
||||||
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
||||||
crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
|
crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
|
||||||
crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
|
crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
|
||||||
@ -326,13 +354,14 @@ am__libsodium_la_SOURCES_DIST = \
|
|||||||
crypto_stream/salsa20/stream_salsa20.c \
|
crypto_stream/salsa20/stream_salsa20.c \
|
||||||
crypto_stream/salsa20/stream_salsa20.h \
|
crypto_stream/salsa20/stream_salsa20.h \
|
||||||
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
||||||
crypto_verify/sodium/verify.c \
|
crypto_verify/verify.c include/sodium/private/asm_cet.h \
|
||||||
include/sodium/private/chacha20_ietf_ext.h \
|
include/sodium/private/chacha20_ietf_ext.h \
|
||||||
include/sodium/private/common.h \
|
include/sodium/private/common.h \
|
||||||
include/sodium/private/ed25519_ref10.h \
|
include/sodium/private/ed25519_ref10.h \
|
||||||
include/sodium/private/implementations.h \
|
include/sodium/private/implementations.h \
|
||||||
include/sodium/private/mutex.h \
|
include/sodium/private/mutex.h \
|
||||||
include/sodium/private/sse2_64_32.h randombytes/randombytes.c \
|
include/sodium/private/sse2_64_32.h \
|
||||||
|
include/sodium/private/softaes.h randombytes/randombytes.c \
|
||||||
sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
|
sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
|
||||||
sodium/version.c crypto_core/ed25519/ref10/fe_51/base.h \
|
sodium/version.c crypto_core/ed25519/ref10/fe_51/base.h \
|
||||||
crypto_core/ed25519/ref10/fe_51/base2.h \
|
crypto_core/ed25519/ref10/fe_51/base2.h \
|
||||||
@ -412,8 +441,14 @@ am__objects_1 =
|
|||||||
@MINIMAL_FALSE@ crypto_stream/salsa208/libsodium_la-stream_salsa208.lo \
|
@MINIMAL_FALSE@ crypto_stream/salsa208/libsodium_la-stream_salsa208.lo \
|
||||||
@MINIMAL_FALSE@ crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo
|
@MINIMAL_FALSE@ crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo
|
||||||
@EMSCRIPTEN_FALSE@am__objects_6 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo
|
@EMSCRIPTEN_FALSE@am__objects_6 = randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo
|
||||||
am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo \
|
am_libsodium_la_OBJECTS = \
|
||||||
crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo \
|
crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo \
|
||||||
|
crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo \
|
||||||
|
crypto_aead/aegis256/libsodium_la-aead_aegis256.lo \
|
||||||
|
crypto_aead/aegis256/libsodium_la-aegis256_soft.lo \
|
||||||
|
crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo \
|
||||||
|
crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo \
|
||||||
|
crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo \
|
||||||
crypto_auth/libsodium_la-crypto_auth.lo \
|
crypto_auth/libsodium_la-crypto_auth.lo \
|
||||||
crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo \
|
crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo \
|
||||||
crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo \
|
crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo \
|
||||||
@ -427,6 +462,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
|
|||||||
crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo \
|
crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo \
|
||||||
crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo \
|
crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo \
|
||||||
crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo \
|
crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo \
|
||||||
|
crypto_core/softaes/libsodium_la-softaes.lo \
|
||||||
crypto_generichash/libsodium_la-crypto_generichash.lo \
|
crypto_generichash/libsodium_la-crypto_generichash.lo \
|
||||||
crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo \
|
crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo \
|
||||||
crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo \
|
crypto_generichash/blake2b/ref/libsodium_la-blake2b-compress-ref.lo \
|
||||||
@ -439,6 +475,8 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
|
|||||||
crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo \
|
crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo \
|
||||||
crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo \
|
crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo \
|
||||||
crypto_kdf/libsodium_la-crypto_kdf.lo \
|
crypto_kdf/libsodium_la-crypto_kdf.lo \
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo \
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo \
|
||||||
crypto_kx/libsodium_la-crypto_kx.lo \
|
crypto_kx/libsodium_la-crypto_kx.lo \
|
||||||
crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \
|
crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo \
|
||||||
crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \
|
crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo \
|
||||||
@ -471,7 +509,7 @@ am_libsodium_la_OBJECTS = crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_
|
|||||||
crypto_stream/libsodium_la-crypto_stream.lo \
|
crypto_stream/libsodium_la-crypto_stream.lo \
|
||||||
crypto_stream/salsa20/libsodium_la-stream_salsa20.lo \
|
crypto_stream/salsa20/libsodium_la-stream_salsa20.lo \
|
||||||
crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo \
|
crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo \
|
||||||
crypto_verify/sodium/libsodium_la-verify.lo \
|
crypto_verify/libsodium_la-verify.lo \
|
||||||
randombytes/libsodium_la-randombytes.lo \
|
randombytes/libsodium_la-randombytes.lo \
|
||||||
sodium/libsodium_la-codecs.lo sodium/libsodium_la-core.lo \
|
sodium/libsodium_la-codecs.lo sodium/libsodium_la-core.lo \
|
||||||
sodium/libsodium_la-runtime.lo sodium/libsodium_la-utils.lo \
|
sodium/libsodium_la-runtime.lo sodium/libsodium_la-utils.lo \
|
||||||
@ -530,9 +568,19 @@ am__v_at_1 =
|
|||||||
DEFAULT_INCLUDES = -I.@am__isrc@
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
||||||
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
|
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
|
||||||
am__maybe_remake_depfiles = depfiles
|
am__maybe_remake_depfiles = depfiles
|
||||||
am__depfiles_remade = crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo \
|
am__depfiles_remade = crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo \
|
||||||
crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo \
|
crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo \
|
||||||
crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo \
|
crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo \
|
||||||
|
crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Plo \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Plo \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Plo \
|
||||||
|
crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Plo \
|
||||||
|
crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Plo \
|
||||||
|
crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo \
|
||||||
|
crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo \
|
||||||
crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo \
|
crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo \
|
||||||
crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo \
|
crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo \
|
||||||
crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo \
|
crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo \
|
||||||
@ -550,6 +598,7 @@ am__depfiles_remade = crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes
|
|||||||
crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo \
|
crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo \
|
||||||
crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo \
|
crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo \
|
||||||
crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo \
|
crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo \
|
||||||
|
crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Plo \
|
||||||
crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo \
|
crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo \
|
||||||
crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo \
|
crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo \
|
||||||
crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo \
|
crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo \
|
||||||
@ -565,6 +614,8 @@ am__depfiles_remade = crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes
|
|||||||
crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo \
|
crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo \
|
||||||
crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo \
|
crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo \
|
||||||
crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo \
|
crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo \
|
||||||
|
crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo \
|
||||||
|
crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo \
|
||||||
crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo \
|
crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo \
|
||||||
crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo \
|
crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo \
|
||||||
crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo \
|
crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo \
|
||||||
@ -629,7 +680,7 @@ am__depfiles_remade = crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes
|
|||||||
crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo \
|
crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo \
|
||||||
crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo \
|
crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo \
|
||||||
crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo \
|
crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo \
|
||||||
crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo \
|
crypto_verify/$(DEPDIR)/libsodium_la-verify.Plo \
|
||||||
randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo \
|
randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo \
|
||||||
randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo \
|
randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo \
|
||||||
randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo \
|
randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo \
|
||||||
@ -667,13 +718,14 @@ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
|||||||
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
||||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||||
am__v_CCLD_1 =
|
am__v_CCLD_1 =
|
||||||
SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
|
SOURCES = $(libaesni_la_SOURCES) $(libarmcrypto_la_SOURCES) \
|
||||||
$(libavx512f_la_SOURCES) $(librdrand_la_SOURCES) \
|
$(libavx2_la_SOURCES) $(libavx512f_la_SOURCES) \
|
||||||
$(libsodium_la_SOURCES) $(libsse2_la_SOURCES) \
|
$(librdrand_la_SOURCES) $(libsodium_la_SOURCES) \
|
||||||
$(libsse41_la_SOURCES) $(libssse3_la_SOURCES)
|
$(libsse2_la_SOURCES) $(libsse41_la_SOURCES) \
|
||||||
DIST_SOURCES = $(libaesni_la_SOURCES) $(libavx2_la_SOURCES) \
|
$(libssse3_la_SOURCES)
|
||||||
$(libavx512f_la_SOURCES) $(librdrand_la_SOURCES) \
|
DIST_SOURCES = $(libaesni_la_SOURCES) $(libarmcrypto_la_SOURCES) \
|
||||||
$(am__libsodium_la_SOURCES_DIST) \
|
$(libavx2_la_SOURCES) $(libavx512f_la_SOURCES) \
|
||||||
|
$(librdrand_la_SOURCES) $(am__libsodium_la_SOURCES_DIST) \
|
||||||
$(am__libsse2_la_SOURCES_DIST) $(libsse41_la_SOURCES) \
|
$(am__libsse2_la_SOURCES_DIST) $(libsse41_la_SOURCES) \
|
||||||
$(libssse3_la_SOURCES)
|
$(libssse3_la_SOURCES)
|
||||||
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
||||||
@ -761,6 +813,7 @@ CCASFLAGS = @CCASFLAGS@
|
|||||||
CCDEPMODE = @CCDEPMODE@
|
CCDEPMODE = @CCDEPMODE@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
CFLAGS_AESNI = @CFLAGS_AESNI@
|
CFLAGS_AESNI = @CFLAGS_AESNI@
|
||||||
|
CFLAGS_ARMCRYPTO = @CFLAGS_ARMCRYPTO@
|
||||||
CFLAGS_AVX = @CFLAGS_AVX@
|
CFLAGS_AVX = @CFLAGS_AVX@
|
||||||
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
CFLAGS_AVX2 = @CFLAGS_AVX2@
|
||||||
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
CFLAGS_AVX512F = @CFLAGS_AVX512F@
|
||||||
@ -916,9 +969,19 @@ valgrind_tools = @valgrind_tools@
|
|||||||
lib_LTLIBRARIES = \
|
lib_LTLIBRARIES = \
|
||||||
libsodium.la
|
libsodium.la
|
||||||
|
|
||||||
libsodium_la_SOURCES = \
|
libsodium_la_SOURCES = crypto_aead/aegis128l/aead_aegis128l.c \
|
||||||
crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
|
crypto_aead/aegis128l/aegis128l_common.h \
|
||||||
crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
|
crypto_aead/aegis128l/aegis128l_soft.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_soft.h \
|
||||||
|
crypto_aead/aegis128l/implementations.h \
|
||||||
|
crypto_aead/aegis256/aead_aegis256.c \
|
||||||
|
crypto_aead/aegis256/aegis256_common.h \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.c \
|
||||||
|
crypto_aead/aegis256/aegis256_soft.h \
|
||||||
|
crypto_aead/aegis256/implementations.h \
|
||||||
|
crypto_aead/aes256gcm/aead_aes256gcm.c \
|
||||||
|
crypto_aead/chacha20poly1305/aead_chacha20poly1305.c \
|
||||||
|
crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c \
|
||||||
crypto_auth/crypto_auth.c \
|
crypto_auth/crypto_auth.c \
|
||||||
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
crypto_auth/hmacsha256/auth_hmacsha256.c \
|
||||||
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
crypto_auth/hmacsha512/auth_hmacsha512.c \
|
||||||
@ -931,6 +994,7 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \
|
||||||
crypto_core/hsalsa20/core_hsalsa20.c \
|
crypto_core/hsalsa20/core_hsalsa20.c \
|
||||||
crypto_core/salsa/ref/core_salsa_ref.c \
|
crypto_core/salsa/ref/core_salsa_ref.c \
|
||||||
|
crypto_core/softaes/softaes.c \
|
||||||
crypto_generichash/crypto_generichash.c \
|
crypto_generichash/crypto_generichash.c \
|
||||||
crypto_generichash/blake2b/generichash_blake2.c \
|
crypto_generichash/blake2b/generichash_blake2.c \
|
||||||
crypto_generichash/blake2b/ref/blake2.h \
|
crypto_generichash/blake2b/ref/blake2.h \
|
||||||
@ -945,7 +1009,9 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_hash/sha512/hash_sha512.c \
|
crypto_hash/sha512/hash_sha512.c \
|
||||||
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
crypto_hash/sha512/cp/hash_sha512_cp.c \
|
||||||
crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \
|
crypto_kdf/blake2b/kdf_blake2b.c crypto_kdf/crypto_kdf.c \
|
||||||
crypto_kx/crypto_kx.c crypto_onetimeauth/crypto_onetimeauth.c \
|
crypto_kdf/hkdf/kdf_hkdf_sha256.c \
|
||||||
|
crypto_kdf/hkdf/kdf_hkdf_sha512.c crypto_kx/crypto_kx.c \
|
||||||
|
crypto_onetimeauth/crypto_onetimeauth.c \
|
||||||
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \
|
||||||
crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
|
crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \
|
||||||
crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
|
crypto_onetimeauth/poly1305/donna/poly1305_donna.h \
|
||||||
@ -990,13 +1056,14 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_stream/salsa20/stream_salsa20.c \
|
crypto_stream/salsa20/stream_salsa20.c \
|
||||||
crypto_stream/salsa20/stream_salsa20.h \
|
crypto_stream/salsa20/stream_salsa20.h \
|
||||||
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
crypto_stream/xsalsa20/stream_xsalsa20.c \
|
||||||
crypto_verify/sodium/verify.c \
|
crypto_verify/verify.c include/sodium/private/asm_cet.h \
|
||||||
include/sodium/private/chacha20_ietf_ext.h \
|
include/sodium/private/chacha20_ietf_ext.h \
|
||||||
include/sodium/private/common.h \
|
include/sodium/private/common.h \
|
||||||
include/sodium/private/ed25519_ref10.h \
|
include/sodium/private/ed25519_ref10.h \
|
||||||
include/sodium/private/implementations.h \
|
include/sodium/private/implementations.h \
|
||||||
include/sodium/private/mutex.h \
|
include/sodium/private/mutex.h \
|
||||||
include/sodium/private/sse2_64_32.h randombytes/randombytes.c \
|
include/sodium/private/sse2_64_32.h \
|
||||||
|
include/sodium/private/softaes.h randombytes/randombytes.c \
|
||||||
sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
|
sodium/codecs.c sodium/core.c sodium/runtime.c sodium/utils.c \
|
||||||
sodium/version.c $(am__append_1) $(am__append_2) \
|
sodium/version.c $(am__append_1) $(am__append_2) \
|
||||||
$(am__append_3) $(am__append_4) $(am__append_5) \
|
$(am__append_3) $(am__append_4) $(am__append_5) \
|
||||||
@ -1022,10 +1089,12 @@ libsodium_la_CPPFLAGS = \
|
|||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
include
|
include
|
||||||
|
|
||||||
libsodium_la_LIBADD = libaesni.la libsse2.la libssse3.la libsse41.la \
|
libsodium_la_LIBADD = libaesni.la libarmcrypto.la libsse2.la \
|
||||||
libavx2.la libavx512f.la $(am__append_8)
|
libssse3.la libsse41.la libavx2.la libavx512f.la \
|
||||||
noinst_LTLIBRARIES = libaesni.la libsse2.la libssse3.la libsse41.la \
|
$(am__append_8)
|
||||||
libavx2.la libavx512f.la $(am__append_9)
|
noinst_LTLIBRARIES = libaesni.la libarmcrypto.la libsse2.la \
|
||||||
|
libssse3.la libsse41.la libavx2.la libavx512f.la \
|
||||||
|
$(am__append_9)
|
||||||
librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
librdrand_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
@CFLAGS_RDRAND@
|
@CFLAGS_RDRAND@
|
||||||
@ -1033,11 +1102,26 @@ librdrand_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
|||||||
librdrand_la_SOURCES = \
|
librdrand_la_SOURCES = \
|
||||||
randombytes/internal/randombytes_internal_random.c
|
randombytes/internal/randombytes_internal_random.c
|
||||||
|
|
||||||
|
libarmcrypto_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
|
libarmcrypto_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
|
@CFLAGS_ARMCRYPTO@
|
||||||
|
|
||||||
|
libarmcrypto_la_SOURCES = \
|
||||||
|
crypto_aead/aegis128l/aegis128l_armcrypto.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_armcrypto.h \
|
||||||
|
crypto_aead/aegis256/aegis256_armcrypto.c \
|
||||||
|
crypto_aead/aegis256/aegis256_armcrypto.h \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
|
||||||
|
|
||||||
libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
libaesni_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
libaesni_la_CPPFLAGS = $(libsodium_la_CPPFLAGS) \
|
||||||
@CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
|
@CFLAGS_SSE2@ @CFLAGS_SSSE3@ @CFLAGS_AVX@ @CFLAGS_AESNI@ @CFLAGS_PCLMUL@
|
||||||
|
|
||||||
libaesni_la_SOURCES = \
|
libaesni_la_SOURCES = \
|
||||||
|
crypto_aead/aegis128l/aegis128l_aesni.c \
|
||||||
|
crypto_aead/aegis128l/aegis128l_aesni.h \
|
||||||
|
crypto_aead/aegis256/aegis256_aesni.c \
|
||||||
|
crypto_aead/aegis256/aegis256_aesni.h \
|
||||||
crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
||||||
|
|
||||||
libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
libsse2_la_LDFLAGS = $(libsodium_la_LDFLAGS)
|
||||||
@ -1176,6 +1260,24 @@ clean-noinstLTLIBRARIES:
|
|||||||
echo rm -f $${locs}; \
|
echo rm -f $${locs}; \
|
||||||
rm -f $${locs}; \
|
rm -f $${locs}; \
|
||||||
}
|
}
|
||||||
|
crypto_aead/aegis128l/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aegis128l
|
||||||
|
@: > crypto_aead/aegis128l/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aegis128l/$(DEPDIR)
|
||||||
|
@: > crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo: \
|
||||||
|
crypto_aead/aegis128l/$(am__dirstamp) \
|
||||||
|
crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis256/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aegis256
|
||||||
|
@: > crypto_aead/aegis256/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aegis256/$(DEPDIR)
|
||||||
|
@: > crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo: \
|
||||||
|
crypto_aead/aegis256/$(am__dirstamp) \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_aead/aes256gcm/aesni/$(am__dirstamp):
|
crypto_aead/aes256gcm/aesni/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_aead/aes256gcm/aesni
|
@$(MKDIR_P) crypto_aead/aes256gcm/aesni
|
||||||
@: > crypto_aead/aes256gcm/aesni/$(am__dirstamp)
|
@: > crypto_aead/aes256gcm/aesni/$(am__dirstamp)
|
||||||
@ -1188,6 +1290,24 @@ crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: \
|
|||||||
|
|
||||||
libaesni.la: $(libaesni_la_OBJECTS) $(libaesni_la_DEPENDENCIES) $(EXTRA_libaesni_la_DEPENDENCIES)
|
libaesni.la: $(libaesni_la_OBJECTS) $(libaesni_la_DEPENDENCIES) $(EXTRA_libaesni_la_DEPENDENCIES)
|
||||||
$(AM_V_CCLD)$(libaesni_la_LINK) $(libaesni_la_OBJECTS) $(libaesni_la_LIBADD) $(LIBS)
|
$(AM_V_CCLD)$(libaesni_la_LINK) $(libaesni_la_OBJECTS) $(libaesni_la_LIBADD) $(LIBS)
|
||||||
|
crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo: \
|
||||||
|
crypto_aead/aegis128l/$(am__dirstamp) \
|
||||||
|
crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo: \
|
||||||
|
crypto_aead/aegis256/$(am__dirstamp) \
|
||||||
|
crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aes256gcm/armcrypto/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aes256gcm/armcrypto
|
||||||
|
@: > crypto_aead/aes256gcm/armcrypto/$(am__dirstamp)
|
||||||
|
crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/aes256gcm/armcrypto/$(DEPDIR)
|
||||||
|
@: > crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo: \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) \
|
||||||
|
crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
|
||||||
|
libarmcrypto.la: $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_DEPENDENCIES) $(EXTRA_libarmcrypto_la_DEPENDENCIES)
|
||||||
|
$(AM_V_CCLD)$(libarmcrypto_la_LINK) $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_LIBADD) $(LIBS)
|
||||||
crypto_generichash/blake2b/ref/$(am__dirstamp):
|
crypto_generichash/blake2b/ref/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_generichash/blake2b/ref
|
@$(MKDIR_P) crypto_generichash/blake2b/ref
|
||||||
@: > crypto_generichash/blake2b/ref/$(am__dirstamp)
|
@: > crypto_generichash/blake2b/ref/$(am__dirstamp)
|
||||||
@ -1245,24 +1365,45 @@ randombytes/internal/librdrand_la-randombytes_internal_random.lo: \
|
|||||||
|
|
||||||
librdrand.la: $(librdrand_la_OBJECTS) $(librdrand_la_DEPENDENCIES) $(EXTRA_librdrand_la_DEPENDENCIES)
|
librdrand.la: $(librdrand_la_OBJECTS) $(librdrand_la_DEPENDENCIES) $(EXTRA_librdrand_la_DEPENDENCIES)
|
||||||
$(AM_V_CCLD)$(librdrand_la_LINK) $(am_librdrand_la_rpath) $(librdrand_la_OBJECTS) $(librdrand_la_LIBADD) $(LIBS)
|
$(AM_V_CCLD)$(librdrand_la_LINK) $(am_librdrand_la_rpath) $(librdrand_la_OBJECTS) $(librdrand_la_LIBADD) $(LIBS)
|
||||||
crypto_aead/chacha20poly1305/sodium/$(am__dirstamp):
|
crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo: \
|
||||||
@$(MKDIR_P) crypto_aead/chacha20poly1305/sodium
|
crypto_aead/aegis128l/$(am__dirstamp) \
|
||||||
@: > crypto_aead/chacha20poly1305/sodium/$(am__dirstamp)
|
crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp):
|
crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo: \
|
||||||
@$(MKDIR_P) crypto_aead/chacha20poly1305/sodium/$(DEPDIR)
|
crypto_aead/aegis128l/$(am__dirstamp) \
|
||||||
@: > crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: \
|
crypto_aead/aegis256/libsodium_la-aead_aegis256.lo: \
|
||||||
crypto_aead/chacha20poly1305/sodium/$(am__dirstamp) \
|
crypto_aead/aegis256/$(am__dirstamp) \
|
||||||
crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp):
|
crypto_aead/aegis256/libsodium_la-aegis256_soft.lo: \
|
||||||
@$(MKDIR_P) crypto_aead/xchacha20poly1305/sodium
|
crypto_aead/aegis256/$(am__dirstamp) \
|
||||||
@: > crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp)
|
crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp):
|
crypto_aead/aes256gcm/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)
|
@$(MKDIR_P) crypto_aead/aes256gcm
|
||||||
@: > crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
@: > crypto_aead/aes256gcm/$(am__dirstamp)
|
||||||
crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo: \
|
crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp):
|
||||||
crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp) \
|
@$(MKDIR_P) crypto_aead/aes256gcm/$(DEPDIR)
|
||||||
crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
@: > crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo: \
|
||||||
|
crypto_aead/aes256gcm/$(am__dirstamp) \
|
||||||
|
crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/chacha20poly1305/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/chacha20poly1305
|
||||||
|
@: > crypto_aead/chacha20poly1305/$(am__dirstamp)
|
||||||
|
crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/chacha20poly1305/$(DEPDIR)
|
||||||
|
@: > crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo: \
|
||||||
|
crypto_aead/chacha20poly1305/$(am__dirstamp) \
|
||||||
|
crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/xchacha20poly1305/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/xchacha20poly1305
|
||||||
|
@: > crypto_aead/xchacha20poly1305/$(am__dirstamp)
|
||||||
|
crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_aead/xchacha20poly1305/$(DEPDIR)
|
||||||
|
@: > crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo: \
|
||||||
|
crypto_aead/xchacha20poly1305/$(am__dirstamp) \
|
||||||
|
crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_auth/$(am__dirstamp):
|
crypto_auth/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_auth
|
@$(MKDIR_P) crypto_auth
|
||||||
@: > crypto_auth/$(am__dirstamp)
|
@: > crypto_auth/$(am__dirstamp)
|
||||||
@ -1366,6 +1507,15 @@ crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp):
|
|||||||
crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: \
|
crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: \
|
||||||
crypto_core/salsa/ref/$(am__dirstamp) \
|
crypto_core/salsa/ref/$(am__dirstamp) \
|
||||||
crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp)
|
crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_core/softaes/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_core/softaes
|
||||||
|
@: > crypto_core/softaes/$(am__dirstamp)
|
||||||
|
crypto_core/softaes/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_core/softaes/$(DEPDIR)
|
||||||
|
@: > crypto_core/softaes/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_core/softaes/libsodium_la-softaes.lo: \
|
||||||
|
crypto_core/softaes/$(am__dirstamp) \
|
||||||
|
crypto_core/softaes/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_generichash/$(am__dirstamp):
|
crypto_generichash/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_generichash
|
@$(MKDIR_P) crypto_generichash
|
||||||
@: > crypto_generichash/$(am__dirstamp)
|
@: > crypto_generichash/$(am__dirstamp)
|
||||||
@ -1454,6 +1604,18 @@ crypto_kdf/$(DEPDIR)/$(am__dirstamp):
|
|||||||
@: > crypto_kdf/$(DEPDIR)/$(am__dirstamp)
|
@: > crypto_kdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/$(am__dirstamp) \
|
crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/$(am__dirstamp) \
|
||||||
crypto_kdf/$(DEPDIR)/$(am__dirstamp)
|
crypto_kdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_kdf/hkdf/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_kdf/hkdf
|
||||||
|
@: > crypto_kdf/hkdf/$(am__dirstamp)
|
||||||
|
crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp):
|
||||||
|
@$(MKDIR_P) crypto_kdf/hkdf/$(DEPDIR)
|
||||||
|
@: > crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo: \
|
||||||
|
crypto_kdf/hkdf/$(am__dirstamp) \
|
||||||
|
crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo: \
|
||||||
|
crypto_kdf/hkdf/$(am__dirstamp) \
|
||||||
|
crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_kx/$(am__dirstamp):
|
crypto_kx/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_kx
|
@$(MKDIR_P) crypto_kx
|
||||||
@: > crypto_kx/$(am__dirstamp)
|
@: > crypto_kx/$(am__dirstamp)
|
||||||
@ -1680,15 +1842,14 @@ crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp):
|
|||||||
crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: \
|
crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: \
|
||||||
crypto_stream/xsalsa20/$(am__dirstamp) \
|
crypto_stream/xsalsa20/$(am__dirstamp) \
|
||||||
crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp)
|
crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_verify/sodium/$(am__dirstamp):
|
crypto_verify/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_verify/sodium
|
@$(MKDIR_P) crypto_verify
|
||||||
@: > crypto_verify/sodium/$(am__dirstamp)
|
@: > crypto_verify/$(am__dirstamp)
|
||||||
crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp):
|
crypto_verify/$(DEPDIR)/$(am__dirstamp):
|
||||||
@$(MKDIR_P) crypto_verify/sodium/$(DEPDIR)
|
@$(MKDIR_P) crypto_verify/$(DEPDIR)
|
||||||
@: > crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp)
|
@: > crypto_verify/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_verify/sodium/libsodium_la-verify.lo: \
|
crypto_verify/libsodium_la-verify.lo: crypto_verify/$(am__dirstamp) \
|
||||||
crypto_verify/sodium/$(am__dirstamp) \
|
crypto_verify/$(DEPDIR)/$(am__dirstamp)
|
||||||
crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp)
|
|
||||||
randombytes/$(am__dirstamp):
|
randombytes/$(am__dirstamp):
|
||||||
@$(MKDIR_P) randombytes
|
@$(MKDIR_P) randombytes
|
||||||
@: > randombytes/$(am__dirstamp)
|
@: > randombytes/$(am__dirstamp)
|
||||||
@ -1941,12 +2102,20 @@ libssse3.la: $(libssse3_la_OBJECTS) $(libssse3_la_DEPENDENCIES) $(EXTRA_libssse3
|
|||||||
|
|
||||||
mostlyclean-compile:
|
mostlyclean-compile:
|
||||||
-rm -f *.$(OBJEXT)
|
-rm -f *.$(OBJEXT)
|
||||||
|
-rm -f crypto_aead/aegis128l/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_aead/aegis128l/*.lo
|
||||||
|
-rm -f crypto_aead/aegis256/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_aead/aegis256/*.lo
|
||||||
|
-rm -f crypto_aead/aes256gcm/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_aead/aes256gcm/*.lo
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/*.$(OBJEXT)
|
-rm -f crypto_aead/aes256gcm/aesni/*.$(OBJEXT)
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/*.lo
|
-rm -f crypto_aead/aes256gcm/aesni/*.lo
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/*.$(OBJEXT)
|
-rm -f crypto_aead/aes256gcm/armcrypto/*.$(OBJEXT)
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/*.lo
|
-rm -f crypto_aead/aes256gcm/armcrypto/*.lo
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/*.$(OBJEXT)
|
-rm -f crypto_aead/chacha20poly1305/*.$(OBJEXT)
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/*.lo
|
-rm -f crypto_aead/chacha20poly1305/*.lo
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/*.lo
|
||||||
-rm -f crypto_auth/*.$(OBJEXT)
|
-rm -f crypto_auth/*.$(OBJEXT)
|
||||||
-rm -f crypto_auth/*.lo
|
-rm -f crypto_auth/*.lo
|
||||||
-rm -f crypto_auth/hmacsha256/*.$(OBJEXT)
|
-rm -f crypto_auth/hmacsha256/*.$(OBJEXT)
|
||||||
@ -1973,6 +2142,8 @@ mostlyclean-compile:
|
|||||||
-rm -f crypto_core/hsalsa20/ref2/*.lo
|
-rm -f crypto_core/hsalsa20/ref2/*.lo
|
||||||
-rm -f crypto_core/salsa/ref/*.$(OBJEXT)
|
-rm -f crypto_core/salsa/ref/*.$(OBJEXT)
|
||||||
-rm -f crypto_core/salsa/ref/*.lo
|
-rm -f crypto_core/salsa/ref/*.lo
|
||||||
|
-rm -f crypto_core/softaes/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_core/softaes/*.lo
|
||||||
-rm -f crypto_generichash/*.$(OBJEXT)
|
-rm -f crypto_generichash/*.$(OBJEXT)
|
||||||
-rm -f crypto_generichash/*.lo
|
-rm -f crypto_generichash/*.lo
|
||||||
-rm -f crypto_generichash/blake2b/*.$(OBJEXT)
|
-rm -f crypto_generichash/blake2b/*.$(OBJEXT)
|
||||||
@ -1993,6 +2164,8 @@ mostlyclean-compile:
|
|||||||
-rm -f crypto_kdf/*.lo
|
-rm -f crypto_kdf/*.lo
|
||||||
-rm -f crypto_kdf/blake2b/*.$(OBJEXT)
|
-rm -f crypto_kdf/blake2b/*.$(OBJEXT)
|
||||||
-rm -f crypto_kdf/blake2b/*.lo
|
-rm -f crypto_kdf/blake2b/*.lo
|
||||||
|
-rm -f crypto_kdf/hkdf/*.$(OBJEXT)
|
||||||
|
-rm -f crypto_kdf/hkdf/*.lo
|
||||||
-rm -f crypto_kx/*.$(OBJEXT)
|
-rm -f crypto_kx/*.$(OBJEXT)
|
||||||
-rm -f crypto_kx/*.lo
|
-rm -f crypto_kx/*.lo
|
||||||
-rm -f crypto_onetimeauth/*.$(OBJEXT)
|
-rm -f crypto_onetimeauth/*.$(OBJEXT)
|
||||||
@ -2073,8 +2246,8 @@ mostlyclean-compile:
|
|||||||
-rm -f crypto_stream/xchacha20/*.lo
|
-rm -f crypto_stream/xchacha20/*.lo
|
||||||
-rm -f crypto_stream/xsalsa20/*.$(OBJEXT)
|
-rm -f crypto_stream/xsalsa20/*.$(OBJEXT)
|
||||||
-rm -f crypto_stream/xsalsa20/*.lo
|
-rm -f crypto_stream/xsalsa20/*.lo
|
||||||
-rm -f crypto_verify/sodium/*.$(OBJEXT)
|
-rm -f crypto_verify/*.$(OBJEXT)
|
||||||
-rm -f crypto_verify/sodium/*.lo
|
-rm -f crypto_verify/*.lo
|
||||||
-rm -f randombytes/*.$(OBJEXT)
|
-rm -f randombytes/*.$(OBJEXT)
|
||||||
-rm -f randombytes/*.lo
|
-rm -f randombytes/*.lo
|
||||||
-rm -f randombytes/internal/*.$(OBJEXT)
|
-rm -f randombytes/internal/*.$(OBJEXT)
|
||||||
@ -2087,9 +2260,19 @@ mostlyclean-compile:
|
|||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo@am__quote@ # am--include-marker
|
||||||
@ -2107,6 +2290,7 @@ distclean-compile:
|
|||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo@am__quote@ # am--include-marker
|
||||||
@ -2122,6 +2306,8 @@ distclean-compile:
|
|||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo@am__quote@ # am--include-marker
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo@am__quote@ # am--include-marker
|
||||||
@ -2186,7 +2372,7 @@ distclean-compile:
|
|||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@crypto_verify/$(DEPDIR)/libsodium_la-verify.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo@am__quote@ # am--include-marker
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo@am__quote@ # am--include-marker
|
@AMDEP_TRUE@@am__include@ @am__quote@randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo@am__quote@ # am--include-marker
|
||||||
@ -2264,6 +2450,20 @@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: crypto_scalarmult/
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
||||||
|
|
||||||
|
crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo: crypto_aead/aegis128l/aegis128l_aesni.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo -MD -MP -MF crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Tpo -c -o crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo `test -f 'crypto_aead/aegis128l/aegis128l_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_aesni.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Tpo crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis128l/aegis128l_aesni.c' object='crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo `test -f 'crypto_aead/aegis128l/aegis128l_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_aesni.c
|
||||||
|
|
||||||
|
crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo: crypto_aead/aegis256/aegis256_aesni.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo -MD -MP -MF crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Tpo -c -o crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo `test -f 'crypto_aead/aegis256/aegis256_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_aesni.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Tpo crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aegis256_aesni.c' object='crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo `test -f 'crypto_aead/aegis256/aegis256_aesni.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_aesni.c
|
||||||
|
|
||||||
crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo -MD -MP -MF crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo -MD -MP -MF crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Tpo crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
||||||
@ -2271,6 +2471,27 @@ crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: crypto_aead/aes
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libaesni_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo `test -f 'crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c
|
||||||
|
|
||||||
|
crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo: crypto_aead/aegis128l/aegis128l_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo -MD -MP -MF crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Tpo -c -o crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo `test -f 'crypto_aead/aegis128l/aegis128l_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Tpo crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis128l/aegis128l_armcrypto.c' object='crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis128l/libarmcrypto_la-aegis128l_armcrypto.lo `test -f 'crypto_aead/aegis128l/aegis128l_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_armcrypto.c
|
||||||
|
|
||||||
|
crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo: crypto_aead/aegis256/aegis256_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo -MD -MP -MF crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Tpo -c -o crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo `test -f 'crypto_aead/aegis256/aegis256_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Tpo crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aegis256_armcrypto.c' object='crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo `test -f 'crypto_aead/aegis256/aegis256_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_armcrypto.c
|
||||||
|
|
||||||
|
crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo: crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo -MD -MP -MF crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Tpo -c -o crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo `test -f 'crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Tpo crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c' object='crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libarmcrypto_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo `test -f 'crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
|
||||||
|
|
||||||
crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo: crypto_generichash/blake2b/ref/blake2b-compress-avx2.c
|
crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo: crypto_generichash/blake2b/ref/blake2b-compress-avx2.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo -c -o crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-avx2.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libavx2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo -MD -MP -MF crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo -c -o crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo `test -f 'crypto_generichash/blake2b/ref/blake2b-compress-avx2.c' || echo '$(srcdir)/'`crypto_generichash/blake2b/ref/blake2b-compress-avx2.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Tpo crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
||||||
@ -2313,19 +2534,54 @@ randombytes/internal/librdrand_la-randombytes_internal_random.lo: randombytes/in
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/internal/librdrand_la-randombytes_internal_random.lo `test -f 'randombytes/internal/randombytes_internal_random.c' || echo '$(srcdir)/'`randombytes/internal/randombytes_internal_random.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librdrand_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o randombytes/internal/librdrand_la-randombytes_internal_random.lo `test -f 'randombytes/internal/randombytes_internal_random.c' || echo '$(srcdir)/'`randombytes/internal/randombytes_internal_random.c
|
||||||
|
|
||||||
crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo: crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
|
crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo: crypto_aead/aegis128l/aead_aegis128l.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo -MD -MP -MF crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo -MD -MP -MF crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Tpo -c -o crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo `test -f 'crypto_aead/aegis128l/aead_aegis128l.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aead_aegis128l.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Tpo crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' object='crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis128l/aead_aegis128l.c' object='crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/chacha20poly1305/sodium/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis128l/libsodium_la-aead_aegis128l.lo `test -f 'crypto_aead/aegis128l/aead_aegis128l.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aead_aegis128l.c
|
||||||
|
|
||||||
crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo: crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c
|
crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo: crypto_aead/aegis128l/aegis128l_soft.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo -MD -MP -MF crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo -c -o crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo -MD -MP -MF crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Tpo -c -o crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo `test -f 'crypto_aead/aegis128l/aegis128l_soft.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_soft.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Tpo crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' object='crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis128l/aegis128l_soft.c' object='crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/xchacha20poly1305/sodium/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis128l/libsodium_la-aegis128l_soft.lo `test -f 'crypto_aead/aegis128l/aegis128l_soft.c' || echo '$(srcdir)/'`crypto_aead/aegis128l/aegis128l_soft.c
|
||||||
|
|
||||||
|
crypto_aead/aegis256/libsodium_la-aead_aegis256.lo: crypto_aead/aegis256/aead_aegis256.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/libsodium_la-aead_aegis256.lo -MD -MP -MF crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Tpo -c -o crypto_aead/aegis256/libsodium_la-aead_aegis256.lo `test -f 'crypto_aead/aegis256/aead_aegis256.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aead_aegis256.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Tpo crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aead_aegis256.c' object='crypto_aead/aegis256/libsodium_la-aead_aegis256.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/libsodium_la-aead_aegis256.lo `test -f 'crypto_aead/aegis256/aead_aegis256.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aead_aegis256.c
|
||||||
|
|
||||||
|
crypto_aead/aegis256/libsodium_la-aegis256_soft.lo: crypto_aead/aegis256/aegis256_soft.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aegis256/libsodium_la-aegis256_soft.lo -MD -MP -MF crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Tpo -c -o crypto_aead/aegis256/libsodium_la-aegis256_soft.lo `test -f 'crypto_aead/aegis256/aegis256_soft.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_soft.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Tpo crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aegis256/aegis256_soft.c' object='crypto_aead/aegis256/libsodium_la-aegis256_soft.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aegis256/libsodium_la-aegis256_soft.lo `test -f 'crypto_aead/aegis256/aegis256_soft.c' || echo '$(srcdir)/'`crypto_aead/aegis256/aegis256_soft.c
|
||||||
|
|
||||||
|
crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo: crypto_aead/aes256gcm/aead_aes256gcm.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo -MD -MP -MF crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Tpo -c -o crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo `test -f 'crypto_aead/aes256gcm/aead_aes256gcm.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aead_aes256gcm.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Tpo crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/aes256gcm/aead_aes256gcm.c' object='crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo `test -f 'crypto_aead/aes256gcm/aead_aes256gcm.c' || echo '$(srcdir)/'`crypto_aead/aes256gcm/aead_aes256gcm.c
|
||||||
|
|
||||||
|
crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo: crypto_aead/chacha20poly1305/aead_chacha20poly1305.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo -MD -MP -MF crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo -c -o crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/aead_chacha20poly1305.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Tpo crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/chacha20poly1305/aead_chacha20poly1305.c' object='crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo `test -f 'crypto_aead/chacha20poly1305/aead_chacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/chacha20poly1305/aead_chacha20poly1305.c
|
||||||
|
|
||||||
|
crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo: crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo -MD -MP -MF crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo -c -o crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Tpo crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c' object='crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo `test -f 'crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c' || echo '$(srcdir)/'`crypto_aead/xchacha20poly1305/aead_xchacha20poly1305.c
|
||||||
|
|
||||||
crypto_auth/libsodium_la-crypto_auth.lo: crypto_auth/crypto_auth.c
|
crypto_auth/libsodium_la-crypto_auth.lo: crypto_auth/crypto_auth.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/libsodium_la-crypto_auth.lo -MD -MP -MF crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Tpo -c -o crypto_auth/libsodium_la-crypto_auth.lo `test -f 'crypto_auth/crypto_auth.c' || echo '$(srcdir)/'`crypto_auth/crypto_auth.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_auth/libsodium_la-crypto_auth.lo -MD -MP -MF crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Tpo -c -o crypto_auth/libsodium_la-crypto_auth.lo `test -f 'crypto_auth/crypto_auth.c' || echo '$(srcdir)/'`crypto_auth/crypto_auth.c
|
||||||
@ -2418,6 +2674,13 @@ crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: crypto_core/salsa/ref/core
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo `test -f 'crypto_core/salsa/ref/core_salsa_ref.c' || echo '$(srcdir)/'`crypto_core/salsa/ref/core_salsa_ref.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo `test -f 'crypto_core/salsa/ref/core_salsa_ref.c' || echo '$(srcdir)/'`crypto_core/salsa/ref/core_salsa_ref.c
|
||||||
|
|
||||||
|
crypto_core/softaes/libsodium_la-softaes.lo: crypto_core/softaes/softaes.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_core/softaes/libsodium_la-softaes.lo -MD -MP -MF crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Tpo -c -o crypto_core/softaes/libsodium_la-softaes.lo `test -f 'crypto_core/softaes/softaes.c' || echo '$(srcdir)/'`crypto_core/softaes/softaes.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Tpo crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_core/softaes/softaes.c' object='crypto_core/softaes/libsodium_la-softaes.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_core/softaes/libsodium_la-softaes.lo `test -f 'crypto_core/softaes/softaes.c' || echo '$(srcdir)/'`crypto_core/softaes/softaes.c
|
||||||
|
|
||||||
crypto_generichash/libsodium_la-crypto_generichash.lo: crypto_generichash/crypto_generichash.c
|
crypto_generichash/libsodium_la-crypto_generichash.lo: crypto_generichash/crypto_generichash.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/libsodium_la-crypto_generichash.lo -MD -MP -MF crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo -c -o crypto_generichash/libsodium_la-crypto_generichash.lo `test -f 'crypto_generichash/crypto_generichash.c' || echo '$(srcdir)/'`crypto_generichash/crypto_generichash.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_generichash/libsodium_la-crypto_generichash.lo -MD -MP -MF crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo -c -o crypto_generichash/libsodium_la-crypto_generichash.lo `test -f 'crypto_generichash/crypto_generichash.c' || echo '$(srcdir)/'`crypto_generichash/crypto_generichash.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Tpo crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
||||||
@ -2502,6 +2765,20 @@ crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/crypto_kdf.c
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/libsodium_la-crypto_kdf.lo `test -f 'crypto_kdf/crypto_kdf.c' || echo '$(srcdir)/'`crypto_kdf/crypto_kdf.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/libsodium_la-crypto_kdf.lo `test -f 'crypto_kdf/crypto_kdf.c' || echo '$(srcdir)/'`crypto_kdf/crypto_kdf.c
|
||||||
|
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo: crypto_kdf/hkdf/kdf_hkdf_sha256.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo -MD -MP -MF crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Tpo -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha256.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha256.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Tpo crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/hkdf/kdf_hkdf_sha256.c' object='crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha256.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha256.c
|
||||||
|
|
||||||
|
crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo: crypto_kdf/hkdf/kdf_hkdf_sha512.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo -MD -MP -MF crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Tpo -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha512.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha512.c
|
||||||
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Tpo crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_kdf/hkdf/kdf_hkdf_sha512.c' object='crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo `test -f 'crypto_kdf/hkdf/kdf_hkdf_sha512.c' || echo '$(srcdir)/'`crypto_kdf/hkdf/kdf_hkdf_sha512.c
|
||||||
|
|
||||||
crypto_kx/libsodium_la-crypto_kx.lo: crypto_kx/crypto_kx.c
|
crypto_kx/libsodium_la-crypto_kx.lo: crypto_kx/crypto_kx.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kx/libsodium_la-crypto_kx.lo -MD -MP -MF crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo -c -o crypto_kx/libsodium_la-crypto_kx.lo `test -f 'crypto_kx/crypto_kx.c' || echo '$(srcdir)/'`crypto_kx/crypto_kx.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_kx/libsodium_la-crypto_kx.lo -MD -MP -MF crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo -c -o crypto_kx/libsodium_la-crypto_kx.lo `test -f 'crypto_kx/crypto_kx.c' || echo '$(srcdir)/'`crypto_kx/crypto_kx.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Tpo crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
||||||
@ -2726,12 +3003,12 @@ crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: crypto_stream/xsalsa20/s
|
|||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo `test -f 'crypto_stream/xsalsa20/stream_xsalsa20.c' || echo '$(srcdir)/'`crypto_stream/xsalsa20/stream_xsalsa20.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo `test -f 'crypto_stream/xsalsa20/stream_xsalsa20.c' || echo '$(srcdir)/'`crypto_stream/xsalsa20/stream_xsalsa20.c
|
||||||
|
|
||||||
crypto_verify/sodium/libsodium_la-verify.lo: crypto_verify/sodium/verify.c
|
crypto_verify/libsodium_la-verify.lo: crypto_verify/verify.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_verify/sodium/libsodium_la-verify.lo -MD -MP -MF crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Tpo -c -o crypto_verify/sodium/libsodium_la-verify.lo `test -f 'crypto_verify/sodium/verify.c' || echo '$(srcdir)/'`crypto_verify/sodium/verify.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crypto_verify/libsodium_la-verify.lo -MD -MP -MF crypto_verify/$(DEPDIR)/libsodium_la-verify.Tpo -c -o crypto_verify/libsodium_la-verify.lo `test -f 'crypto_verify/verify.c' || echo '$(srcdir)/'`crypto_verify/verify.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Tpo crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo
|
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) crypto_verify/$(DEPDIR)/libsodium_la-verify.Tpo crypto_verify/$(DEPDIR)/libsodium_la-verify.Plo
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_verify/sodium/verify.c' object='crypto_verify/sodium/libsodium_la-verify.lo' libtool=yes @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='crypto_verify/verify.c' object='crypto_verify/libsodium_la-verify.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_verify/sodium/libsodium_la-verify.lo `test -f 'crypto_verify/sodium/verify.c' || echo '$(srcdir)/'`crypto_verify/sodium/verify.c
|
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crypto_verify/libsodium_la-verify.lo `test -f 'crypto_verify/verify.c' || echo '$(srcdir)/'`crypto_verify/verify.c
|
||||||
|
|
||||||
randombytes/libsodium_la-randombytes.lo: randombytes/randombytes.c
|
randombytes/libsodium_la-randombytes.lo: randombytes/randombytes.c
|
||||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/libsodium_la-randombytes.lo -MD -MP -MF randombytes/$(DEPDIR)/libsodium_la-randombytes.Tpo -c -o randombytes/libsodium_la-randombytes.lo `test -f 'randombytes/randombytes.c' || echo '$(srcdir)/'`randombytes/randombytes.c
|
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsodium_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT randombytes/libsodium_la-randombytes.lo -MD -MP -MF randombytes/$(DEPDIR)/libsodium_la-randombytes.Tpo -c -o randombytes/libsodium_la-randombytes.lo `test -f 'randombytes/randombytes.c' || echo '$(srcdir)/'`randombytes/randombytes.c
|
||||||
@ -3011,9 +3288,13 @@ mostlyclean-libtool:
|
|||||||
|
|
||||||
clean-libtool:
|
clean-libtool:
|
||||||
-rm -rf .libs _libs
|
-rm -rf .libs _libs
|
||||||
|
-rm -rf crypto_aead/aegis128l/.libs crypto_aead/aegis128l/_libs
|
||||||
|
-rm -rf crypto_aead/aegis256/.libs crypto_aead/aegis256/_libs
|
||||||
|
-rm -rf crypto_aead/aes256gcm/.libs crypto_aead/aes256gcm/_libs
|
||||||
-rm -rf crypto_aead/aes256gcm/aesni/.libs crypto_aead/aes256gcm/aesni/_libs
|
-rm -rf crypto_aead/aes256gcm/aesni/.libs crypto_aead/aes256gcm/aesni/_libs
|
||||||
-rm -rf crypto_aead/chacha20poly1305/sodium/.libs crypto_aead/chacha20poly1305/sodium/_libs
|
-rm -rf crypto_aead/aes256gcm/armcrypto/.libs crypto_aead/aes256gcm/armcrypto/_libs
|
||||||
-rm -rf crypto_aead/xchacha20poly1305/sodium/.libs crypto_aead/xchacha20poly1305/sodium/_libs
|
-rm -rf crypto_aead/chacha20poly1305/.libs crypto_aead/chacha20poly1305/_libs
|
||||||
|
-rm -rf crypto_aead/xchacha20poly1305/.libs crypto_aead/xchacha20poly1305/_libs
|
||||||
-rm -rf crypto_auth/.libs crypto_auth/_libs
|
-rm -rf crypto_auth/.libs crypto_auth/_libs
|
||||||
-rm -rf crypto_auth/hmacsha256/.libs crypto_auth/hmacsha256/_libs
|
-rm -rf crypto_auth/hmacsha256/.libs crypto_auth/hmacsha256/_libs
|
||||||
-rm -rf crypto_auth/hmacsha512/.libs crypto_auth/hmacsha512/_libs
|
-rm -rf crypto_auth/hmacsha512/.libs crypto_auth/hmacsha512/_libs
|
||||||
@ -3027,6 +3308,7 @@ clean-libtool:
|
|||||||
-rm -rf crypto_core/hsalsa20/.libs crypto_core/hsalsa20/_libs
|
-rm -rf crypto_core/hsalsa20/.libs crypto_core/hsalsa20/_libs
|
||||||
-rm -rf crypto_core/hsalsa20/ref2/.libs crypto_core/hsalsa20/ref2/_libs
|
-rm -rf crypto_core/hsalsa20/ref2/.libs crypto_core/hsalsa20/ref2/_libs
|
||||||
-rm -rf crypto_core/salsa/ref/.libs crypto_core/salsa/ref/_libs
|
-rm -rf crypto_core/salsa/ref/.libs crypto_core/salsa/ref/_libs
|
||||||
|
-rm -rf crypto_core/softaes/.libs crypto_core/softaes/_libs
|
||||||
-rm -rf crypto_generichash/.libs crypto_generichash/_libs
|
-rm -rf crypto_generichash/.libs crypto_generichash/_libs
|
||||||
-rm -rf crypto_generichash/blake2b/.libs crypto_generichash/blake2b/_libs
|
-rm -rf crypto_generichash/blake2b/.libs crypto_generichash/blake2b/_libs
|
||||||
-rm -rf crypto_generichash/blake2b/ref/.libs crypto_generichash/blake2b/ref/_libs
|
-rm -rf crypto_generichash/blake2b/ref/.libs crypto_generichash/blake2b/ref/_libs
|
||||||
@ -3037,6 +3319,7 @@ clean-libtool:
|
|||||||
-rm -rf crypto_hash/sha512/cp/.libs crypto_hash/sha512/cp/_libs
|
-rm -rf crypto_hash/sha512/cp/.libs crypto_hash/sha512/cp/_libs
|
||||||
-rm -rf crypto_kdf/.libs crypto_kdf/_libs
|
-rm -rf crypto_kdf/.libs crypto_kdf/_libs
|
||||||
-rm -rf crypto_kdf/blake2b/.libs crypto_kdf/blake2b/_libs
|
-rm -rf crypto_kdf/blake2b/.libs crypto_kdf/blake2b/_libs
|
||||||
|
-rm -rf crypto_kdf/hkdf/.libs crypto_kdf/hkdf/_libs
|
||||||
-rm -rf crypto_kx/.libs crypto_kx/_libs
|
-rm -rf crypto_kx/.libs crypto_kx/_libs
|
||||||
-rm -rf crypto_onetimeauth/.libs crypto_onetimeauth/_libs
|
-rm -rf crypto_onetimeauth/.libs crypto_onetimeauth/_libs
|
||||||
-rm -rf crypto_onetimeauth/poly1305/.libs crypto_onetimeauth/poly1305/_libs
|
-rm -rf crypto_onetimeauth/poly1305/.libs crypto_onetimeauth/poly1305/_libs
|
||||||
@ -3077,7 +3360,7 @@ clean-libtool:
|
|||||||
-rm -rf crypto_stream/salsa208/ref/.libs crypto_stream/salsa208/ref/_libs
|
-rm -rf crypto_stream/salsa208/ref/.libs crypto_stream/salsa208/ref/_libs
|
||||||
-rm -rf crypto_stream/xchacha20/.libs crypto_stream/xchacha20/_libs
|
-rm -rf crypto_stream/xchacha20/.libs crypto_stream/xchacha20/_libs
|
||||||
-rm -rf crypto_stream/xsalsa20/.libs crypto_stream/xsalsa20/_libs
|
-rm -rf crypto_stream/xsalsa20/.libs crypto_stream/xsalsa20/_libs
|
||||||
-rm -rf crypto_verify/sodium/.libs crypto_verify/sodium/_libs
|
-rm -rf crypto_verify/.libs crypto_verify/_libs
|
||||||
-rm -rf randombytes/.libs randombytes/_libs
|
-rm -rf randombytes/.libs randombytes/_libs
|
||||||
-rm -rf randombytes/internal/.libs randombytes/internal/_libs
|
-rm -rf randombytes/internal/.libs randombytes/internal/_libs
|
||||||
-rm -rf randombytes/sysrandom/.libs randombytes/sysrandom/_libs
|
-rm -rf randombytes/sysrandom/.libs randombytes/sysrandom/_libs
|
||||||
@ -3295,12 +3578,20 @@ clean-generic:
|
|||||||
distclean-generic:
|
distclean-generic:
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||||
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/aegis128l/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/aegis256/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/aes256gcm/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/$(am__dirstamp)
|
-rm -f crypto_aead/aes256gcm/aesni/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/$(am__dirstamp)
|
-rm -f crypto_aead/aes256gcm/armcrypto/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/$(am__dirstamp)
|
-rm -f crypto_aead/chacha20poly1305/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/$(am__dirstamp)
|
||||||
-rm -f crypto_auth/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_auth/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_auth/$(am__dirstamp)
|
-rm -f crypto_auth/$(am__dirstamp)
|
||||||
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp)
|
||||||
@ -3327,6 +3618,8 @@ distclean-generic:
|
|||||||
-rm -f crypto_core/hsalsa20/ref2/$(am__dirstamp)
|
-rm -f crypto_core/hsalsa20/ref2/$(am__dirstamp)
|
||||||
-rm -f crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_core/salsa/ref/$(am__dirstamp)
|
-rm -f crypto_core/salsa/ref/$(am__dirstamp)
|
||||||
|
-rm -f crypto_core/softaes/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_core/softaes/$(am__dirstamp)
|
||||||
-rm -f crypto_generichash/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_generichash/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_generichash/$(am__dirstamp)
|
-rm -f crypto_generichash/$(am__dirstamp)
|
||||||
-rm -f crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp)
|
||||||
@ -3347,6 +3640,8 @@ distclean-generic:
|
|||||||
-rm -f crypto_kdf/$(am__dirstamp)
|
-rm -f crypto_kdf/$(am__dirstamp)
|
||||||
-rm -f crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_kdf/blake2b/$(am__dirstamp)
|
-rm -f crypto_kdf/blake2b/$(am__dirstamp)
|
||||||
|
-rm -f crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp)
|
||||||
|
-rm -f crypto_kdf/hkdf/$(am__dirstamp)
|
||||||
-rm -f crypto_kx/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_kx/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_kx/$(am__dirstamp)
|
-rm -f crypto_kx/$(am__dirstamp)
|
||||||
-rm -f crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp)
|
||||||
@ -3427,8 +3722,8 @@ distclean-generic:
|
|||||||
-rm -f crypto_stream/xchacha20/$(am__dirstamp)
|
-rm -f crypto_stream/xchacha20/$(am__dirstamp)
|
||||||
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_stream/xsalsa20/$(am__dirstamp)
|
-rm -f crypto_stream/xsalsa20/$(am__dirstamp)
|
||||||
-rm -f crypto_verify/sodium/$(DEPDIR)/$(am__dirstamp)
|
-rm -f crypto_verify/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f crypto_verify/sodium/$(am__dirstamp)
|
-rm -f crypto_verify/$(am__dirstamp)
|
||||||
-rm -f randombytes/$(DEPDIR)/$(am__dirstamp)
|
-rm -f randombytes/$(DEPDIR)/$(am__dirstamp)
|
||||||
-rm -f randombytes/$(am__dirstamp)
|
-rm -f randombytes/$(am__dirstamp)
|
||||||
-rm -f randombytes/internal/$(DEPDIR)/$(am__dirstamp)
|
-rm -f randombytes/internal/$(DEPDIR)/$(am__dirstamp)
|
||||||
@ -3447,9 +3742,19 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
|||||||
clean-noinstLTLIBRARIES mostlyclean-am
|
clean-noinstLTLIBRARIES mostlyclean-am
|
||||||
|
|
||||||
distclean: distclean-recursive
|
distclean: distclean-recursive
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo
|
||||||
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Plo
|
||||||
|
-rm -f crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
||||||
-rm -f crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo
|
-rm -f crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo
|
||||||
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo
|
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo
|
||||||
-rm -f crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo
|
-rm -f crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo
|
||||||
@ -3467,6 +3772,7 @@ distclean: distclean-recursive
|
|||||||
-rm -f crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo
|
-rm -f crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo
|
||||||
-rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo
|
-rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo
|
||||||
-rm -f crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo
|
-rm -f crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo
|
||||||
|
-rm -f crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Plo
|
||||||
-rm -f crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
-rm -f crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
||||||
-rm -f crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo
|
-rm -f crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo
|
||||||
-rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
-rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
||||||
@ -3482,6 +3788,8 @@ distclean: distclean-recursive
|
|||||||
-rm -f crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo
|
-rm -f crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo
|
||||||
-rm -f crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo
|
-rm -f crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo
|
||||||
-rm -f crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo
|
-rm -f crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo
|
||||||
|
-rm -f crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo
|
||||||
|
-rm -f crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo
|
||||||
-rm -f crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
-rm -f crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
||||||
-rm -f crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo
|
-rm -f crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo
|
||||||
-rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo
|
-rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo
|
||||||
@ -3546,7 +3854,7 @@ distclean: distclean-recursive
|
|||||||
-rm -f crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo
|
-rm -f crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo
|
||||||
-rm -f crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo
|
-rm -f crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo
|
||||||
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo
|
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo
|
||||||
-rm -f crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo
|
-rm -f crypto_verify/$(DEPDIR)/libsodium_la-verify.Plo
|
||||||
-rm -f randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo
|
-rm -f randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo
|
||||||
-rm -f randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo
|
-rm -f randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo
|
||||||
-rm -f randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
|
-rm -f randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
|
||||||
@ -3600,9 +3908,19 @@ install-ps-am:
|
|||||||
installcheck-am:
|
installcheck-am:
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-recursive
|
maintainer-clean: maintainer-clean-recursive
|
||||||
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo
|
||||||
-rm -f crypto_aead/chacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo
|
||||||
-rm -f crypto_aead/xchacha20poly1305/sodium/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo
|
||||||
|
-rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libaesni_la-aegis256_aesni.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libarmcrypto_la-aegis256_armcrypto.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aead_aegis256.Plo
|
||||||
|
-rm -f crypto_aead/aegis256/$(DEPDIR)/libsodium_la-aegis256_soft.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/$(DEPDIR)/libsodium_la-aead_aes256gcm.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/libaesni_la-aead_aes256gcm_aesni.Plo
|
||||||
|
-rm -f crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/libarmcrypto_la-aead_aes256gcm_armcrypto.Plo
|
||||||
|
-rm -f crypto_aead/chacha20poly1305/$(DEPDIR)/libsodium_la-aead_chacha20poly1305.Plo
|
||||||
|
-rm -f crypto_aead/xchacha20poly1305/$(DEPDIR)/libsodium_la-aead_xchacha20poly1305.Plo
|
||||||
-rm -f crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo
|
-rm -f crypto_auth/$(DEPDIR)/libsodium_la-crypto_auth.Plo
|
||||||
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo
|
-rm -f crypto_auth/hmacsha256/$(DEPDIR)/libsodium_la-auth_hmacsha256.Plo
|
||||||
-rm -f crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo
|
-rm -f crypto_auth/hmacsha512/$(DEPDIR)/libsodium_la-auth_hmacsha512.Plo
|
||||||
@ -3620,6 +3938,7 @@ maintainer-clean: maintainer-clean-recursive
|
|||||||
-rm -f crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo
|
-rm -f crypto_core/hsalsa20/$(DEPDIR)/libsodium_la-core_hsalsa20.Plo
|
||||||
-rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo
|
-rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/libsodium_la-core_hsalsa20_ref2.Plo
|
||||||
-rm -f crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo
|
-rm -f crypto_core/salsa/ref/$(DEPDIR)/libsodium_la-core_salsa_ref.Plo
|
||||||
|
-rm -f crypto_core/softaes/$(DEPDIR)/libsodium_la-softaes.Plo
|
||||||
-rm -f crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
-rm -f crypto_generichash/$(DEPDIR)/libsodium_la-crypto_generichash.Plo
|
||||||
-rm -f crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo
|
-rm -f crypto_generichash/blake2b/$(DEPDIR)/libsodium_la-generichash_blake2.Plo
|
||||||
-rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
-rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/libavx2_la-blake2b-compress-avx2.Plo
|
||||||
@ -3635,6 +3954,8 @@ maintainer-clean: maintainer-clean-recursive
|
|||||||
-rm -f crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo
|
-rm -f crypto_hash/sha512/cp/$(DEPDIR)/libsodium_la-hash_sha512_cp.Plo
|
||||||
-rm -f crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo
|
-rm -f crypto_kdf/$(DEPDIR)/libsodium_la-crypto_kdf.Plo
|
||||||
-rm -f crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo
|
-rm -f crypto_kdf/blake2b/$(DEPDIR)/libsodium_la-kdf_blake2b.Plo
|
||||||
|
-rm -f crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha256.Plo
|
||||||
|
-rm -f crypto_kdf/hkdf/$(DEPDIR)/libsodium_la-kdf_hkdf_sha512.Plo
|
||||||
-rm -f crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
-rm -f crypto_kx/$(DEPDIR)/libsodium_la-crypto_kx.Plo
|
||||||
-rm -f crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo
|
-rm -f crypto_onetimeauth/$(DEPDIR)/libsodium_la-crypto_onetimeauth.Plo
|
||||||
-rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo
|
-rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/libsodium_la-onetimeauth_poly1305.Plo
|
||||||
@ -3699,7 +4020,7 @@ maintainer-clean: maintainer-clean-recursive
|
|||||||
-rm -f crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo
|
-rm -f crypto_stream/salsa208/ref/$(DEPDIR)/libsodium_la-stream_salsa208_ref.Plo
|
||||||
-rm -f crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo
|
-rm -f crypto_stream/xchacha20/$(DEPDIR)/libsodium_la-stream_xchacha20.Plo
|
||||||
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo
|
-rm -f crypto_stream/xsalsa20/$(DEPDIR)/libsodium_la-stream_xsalsa20.Plo
|
||||||
-rm -f crypto_verify/sodium/$(DEPDIR)/libsodium_la-verify.Plo
|
-rm -f crypto_verify/$(DEPDIR)/libsodium_la-verify.Plo
|
||||||
-rm -f randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo
|
-rm -f randombytes/$(DEPDIR)/libsodium_la-randombytes.Plo
|
||||||
-rm -f randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo
|
-rm -f randombytes/internal/$(DEPDIR)/librdrand_la-randombytes_internal_random.Plo
|
||||||
-rm -f randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
|
-rm -f randombytes/sysrandom/$(DEPDIR)/libsodium_la-randombytes_sysrandom.Plo
|
||||||
|
159
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c
vendored
Normal file
159
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c
vendored
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
#include "private/common.h"
|
||||||
|
#include "private/implementations.h"
|
||||||
|
#include "randombytes.h"
|
||||||
|
#include "runtime.h"
|
||||||
|
|
||||||
|
#include "aegis128l_soft.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
#include "aegis128l_armcrypto.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
#include "aegis128l_aesni.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const aegis128l_implementation *implementation = &aegis128l_soft_implementation;
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis128l_keybytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis128l_KEYBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis128l_nsecbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis128l_NSECBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis128l_npubbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis128l_NPUBBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis128l_abytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis128l_ABYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis128l_messagebytes_max(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis128l_MESSAGEBYTES_MAX;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
crypto_aead_aegis128l_keygen(unsigned char k[crypto_aead_aegis128l_KEYBYTES])
|
||||||
|
{
|
||||||
|
randombytes_buf(k, crypto_aead_aegis128l_KEYBYTES);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis128l_encrypt(unsigned char *c, unsigned long long *clen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
unsigned long long clen = 0ULL;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = crypto_aead_aegis128l_encrypt_detached(c, c + mlen, NULL, m, mlen, ad, adlen, nsec, npub,
|
||||||
|
k);
|
||||||
|
if (clen_p != NULL) {
|
||||||
|
if (ret == 0) {
|
||||||
|
clen = mlen + crypto_aead_aegis128l_ABYTES;
|
||||||
|
}
|
||||||
|
*clen_p = clen;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis128l_decrypt(unsigned char *m, unsigned long long *mlen_p, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *ad, unsigned long long adlen,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
unsigned long long mlen = 0ULL;
|
||||||
|
int ret = -1;
|
||||||
|
|
||||||
|
if (clen >= crypto_aead_aegis128l_ABYTES) {
|
||||||
|
ret = crypto_aead_aegis128l_decrypt_detached(
|
||||||
|
m, nsec, c, clen - crypto_aead_aegis128l_ABYTES,
|
||||||
|
c + clen - crypto_aead_aegis128l_ABYTES, ad, adlen, npub, k);
|
||||||
|
}
|
||||||
|
if (mlen_p != NULL) {
|
||||||
|
if (ret == 0) {
|
||||||
|
mlen = clen - crypto_aead_aegis128l_ABYTES;
|
||||||
|
}
|
||||||
|
*mlen_p = mlen;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis128l_encrypt_detached(unsigned char *c, unsigned char *mac,
|
||||||
|
unsigned long long *maclen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
const size_t maclen = crypto_aead_aegis128l_ABYTES;
|
||||||
|
|
||||||
|
if (maclen_p != NULL) {
|
||||||
|
*maclen_p = maclen;
|
||||||
|
}
|
||||||
|
if (mlen > crypto_aead_aegis128l_MESSAGEBYTES_MAX ||
|
||||||
|
adlen > crypto_aead_aegis128l_MESSAGEBYTES_MAX) {
|
||||||
|
sodium_misuse();
|
||||||
|
}
|
||||||
|
return implementation->encrypt_detached(c, mac, maclen, m, (size_t) mlen, ad, (size_t) adlen,
|
||||||
|
npub, k);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis128l_decrypt_detached(unsigned char *m, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *mac, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *npub,
|
||||||
|
const unsigned char *k)
|
||||||
|
{
|
||||||
|
const size_t maclen = crypto_aead_aegis128l_ABYTES;
|
||||||
|
|
||||||
|
if (clen > crypto_aead_aegis128l_MESSAGEBYTES_MAX ||
|
||||||
|
adlen > crypto_aead_aegis128l_MESSAGEBYTES_MAX) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return implementation->decrypt_detached(m, c, (size_t) clen, mac, maclen, ad, (size_t) adlen,
|
||||||
|
npub, k);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
_crypto_aead_aegis128l_pick_best_implementation(void)
|
||||||
|
{
|
||||||
|
implementation = &aegis128l_soft_implementation;
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
if (sodium_runtime_has_armcrypto()) {
|
||||||
|
implementation = &aegis128l_armcrypto_implementation;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
if (sodium_runtime_has_aesni() & sodium_runtime_has_avx()) {
|
||||||
|
implementation = &aegis128l_aesni_implementation;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return 0; /* LCOV_EXCL_LINE */
|
||||||
|
}
|
70
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_aesni.c
vendored
Normal file
70
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_aesni.c
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
|
||||||
|
#include "aegis128l_aesni.h"
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute push(__attribute__((target("aes,avx"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC target("aes,avx")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "private/sse2_64_32.h"
|
||||||
|
#include <immintrin.h>
|
||||||
|
#include <wmmintrin.h>
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef __m128i aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) _mm_xor_si128((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) _mm_and_si128((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) _mm_loadu_si128((const aes_block_t *) (const void *) (A))
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) _mm_set_epi64x((long long) (A), (long long) (B))
|
||||||
|
#define AES_BLOCK_STORE(A, B) _mm_storeu_si128((aes_block_t *) (void *) (A), (B))
|
||||||
|
#define AES_ENC(A, B) _mm_aesenc_si128((A), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis128l_update(aes_block_t *const state, const aes_block_t d1, const aes_block_t d2)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[7];
|
||||||
|
state[7] = AES_ENC(state[6], state[7]);
|
||||||
|
state[6] = AES_ENC(state[5], state[6]);
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_ENC(state[3], state[4]);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_ENC(tmp, state[0]);
|
||||||
|
|
||||||
|
state[0] = AES_BLOCK_XOR(state[0], d1);
|
||||||
|
state[4] = AES_BLOCK_XOR(state[4], d2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis128l_common.h"
|
||||||
|
|
||||||
|
struct aegis128l_implementation aegis128l_aesni_implementation = { SODIUM_C99(.encrypt_detached =)
|
||||||
|
encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =)
|
||||||
|
decrypt_detached };
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_aesni.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_aesni.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis128l_aesni_H
|
||||||
|
#define aegis128l_aesni_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis128l_implementation aegis128l_aesni_implementation;
|
||||||
|
|
||||||
|
#endif
|
72
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_armcrypto.c
vendored
Normal file
72
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_armcrypto.c
vendored
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
|
||||||
|
#include "aegis128l_armcrypto.h"
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute push(__attribute__((target("neon,crypto,aes"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC target("+simd+crypto")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __ARM_FEATURE_CRYPTO
|
||||||
|
#define __ARM_FEATURE_CRYPTO 1
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_AES
|
||||||
|
#define __ARM_FEATURE_AES 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <arm_neon.h>
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef uint8x16_t aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) veorq_u8((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) vandq_u8((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) vld1q_u8(A)
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) vreinterpretq_u8_u64(vsetq_lane_u64((A), vmovq_n_u64(B), 1))
|
||||||
|
#define AES_BLOCK_STORE(A, B) vst1q_u8((A), (B))
|
||||||
|
#define AES_ENC(A, B) veorq_u8(vaesmcq_u8(vaeseq_u8((A), vmovq_n_u8(0))), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis128l_update(aes_block_t *const state, const aes_block_t d1, const aes_block_t d2)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[7];
|
||||||
|
state[7] = AES_ENC(state[6], state[7]);
|
||||||
|
state[6] = AES_ENC(state[5], state[6]);
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_BLOCK_XOR(AES_ENC(state[3], state[4]), d2);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_BLOCK_XOR(AES_ENC(tmp, state[0]), d1);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis128l_common.h"
|
||||||
|
|
||||||
|
struct aegis128l_implementation aegis128l_armcrypto_implementation = {
|
||||||
|
SODIUM_C99(.encrypt_detached =) encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =) decrypt_detached
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_armcrypto.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_armcrypto.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis128l_armcrypto_H
|
||||||
|
#define aegis128l_armcrypto_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis128l_implementation aegis128l_armcrypto_implementation;
|
||||||
|
|
||||||
|
#endif
|
229
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_common.h
vendored
Normal file
229
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_common.h
vendored
Normal file
@ -0,0 +1,229 @@
|
|||||||
|
#define RATE 32
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis128l_init(const uint8_t *key, const uint8_t *nonce, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
static CRYPTO_ALIGN(AES_BLOCK_LENGTH)
|
||||||
|
const uint8_t c0_[AES_BLOCK_LENGTH] = { 0x00, 0x01, 0x01, 0x02, 0x03, 0x05, 0x08, 0x0d,
|
||||||
|
0x15, 0x22, 0x37, 0x59, 0x90, 0xe9, 0x79, 0x62 };
|
||||||
|
static CRYPTO_ALIGN(AES_BLOCK_LENGTH)
|
||||||
|
const uint8_t c1_[AES_BLOCK_LENGTH] = { 0xdb, 0x3d, 0x18, 0x55, 0x6d, 0xc2, 0x2f, 0xf1,
|
||||||
|
0x20, 0x11, 0x31, 0x42, 0x73, 0xb5, 0x28, 0xdd };
|
||||||
|
|
||||||
|
const aes_block_t c0 = AES_BLOCK_LOAD(c0_);
|
||||||
|
const aes_block_t c1 = AES_BLOCK_LOAD(c1_);
|
||||||
|
aes_block_t k;
|
||||||
|
aes_block_t n;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
k = AES_BLOCK_LOAD(key);
|
||||||
|
n = AES_BLOCK_LOAD(nonce);
|
||||||
|
|
||||||
|
state[0] = AES_BLOCK_XOR(k, n);
|
||||||
|
state[1] = c1;
|
||||||
|
state[2] = c0;
|
||||||
|
state[3] = c1;
|
||||||
|
state[4] = AES_BLOCK_XOR(k, n);
|
||||||
|
state[5] = AES_BLOCK_XOR(k, c0);
|
||||||
|
state[6] = AES_BLOCK_XOR(k, c1);
|
||||||
|
state[7] = AES_BLOCK_XOR(k, c0);
|
||||||
|
for (i = 0; i < 10; i++) {
|
||||||
|
aegis128l_update(state, n, k);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis128l_mac(uint8_t *mac, size_t maclen, size_t adlen, size_t mlen, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
tmp = AES_BLOCK_LOAD_64x2(((uint64_t) mlen) << 3, ((uint64_t) adlen) << 3);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, state[2]);
|
||||||
|
|
||||||
|
for (i = 0; i < 7; i++) {
|
||||||
|
aegis128l_update(state, tmp, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (maclen == 16) {
|
||||||
|
tmp = AES_BLOCK_XOR(state[6], AES_BLOCK_XOR(state[5], state[4]));
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[3], state[2]));
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[1], state[0]));
|
||||||
|
AES_BLOCK_STORE(mac, tmp);
|
||||||
|
} else if (maclen == 32) {
|
||||||
|
tmp = AES_BLOCK_XOR(state[3], state[2]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[1], state[0]));
|
||||||
|
AES_BLOCK_STORE(mac, tmp);
|
||||||
|
tmp = AES_BLOCK_XOR(state[7], state[6]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[5], state[4]));
|
||||||
|
AES_BLOCK_STORE(mac + 16, tmp);
|
||||||
|
} else {
|
||||||
|
memset(mac, 0, maclen);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis128l_absorb(const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg0, msg1;
|
||||||
|
|
||||||
|
msg0 = AES_BLOCK_LOAD(src);
|
||||||
|
msg1 = AES_BLOCK_LOAD(src + AES_BLOCK_LENGTH);
|
||||||
|
aegis128l_update(state, msg0, msg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis128l_enc(uint8_t *const dst, const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg0, msg1;
|
||||||
|
aes_block_t tmp0, tmp1;
|
||||||
|
|
||||||
|
msg0 = AES_BLOCK_LOAD(src);
|
||||||
|
msg1 = AES_BLOCK_LOAD(src + AES_BLOCK_LENGTH);
|
||||||
|
tmp0 = AES_BLOCK_XOR(msg0, state[6]);
|
||||||
|
tmp0 = AES_BLOCK_XOR(tmp0, state[1]);
|
||||||
|
tmp1 = AES_BLOCK_XOR(msg1, state[5]);
|
||||||
|
tmp1 = AES_BLOCK_XOR(tmp1, state[2]);
|
||||||
|
tmp0 = AES_BLOCK_XOR(tmp0, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
tmp1 = AES_BLOCK_XOR(tmp1, AES_BLOCK_AND(state[6], state[7]));
|
||||||
|
AES_BLOCK_STORE(dst, tmp0);
|
||||||
|
AES_BLOCK_STORE(dst + AES_BLOCK_LENGTH, tmp1);
|
||||||
|
|
||||||
|
aegis128l_update(state, msg0, msg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis128l_dec(uint8_t *const dst, const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg0, msg1;
|
||||||
|
|
||||||
|
msg0 = AES_BLOCK_LOAD(src);
|
||||||
|
msg1 = AES_BLOCK_LOAD(src + AES_BLOCK_LENGTH);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, state[6]);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, state[1]);
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, state[5]);
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, state[2]);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, AES_BLOCK_AND(state[6], state[7]));
|
||||||
|
AES_BLOCK_STORE(dst, msg0);
|
||||||
|
AES_BLOCK_STORE(dst + AES_BLOCK_LENGTH, msg1);
|
||||||
|
|
||||||
|
aegis128l_update(state, msg0, msg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis128l_declast(uint8_t *const dst, const uint8_t *const src, size_t len,
|
||||||
|
aes_block_t *const state)
|
||||||
|
{
|
||||||
|
uint8_t pad[RATE];
|
||||||
|
aes_block_t msg0, msg1;
|
||||||
|
|
||||||
|
memset(pad, 0, sizeof pad);
|
||||||
|
memcpy(pad, src, len);
|
||||||
|
|
||||||
|
msg0 = AES_BLOCK_LOAD(pad);
|
||||||
|
msg1 = AES_BLOCK_LOAD(pad + AES_BLOCK_LENGTH);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, state[6]);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, state[1]);
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, state[5]);
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, state[2]);
|
||||||
|
msg0 = AES_BLOCK_XOR(msg0, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
msg1 = AES_BLOCK_XOR(msg1, AES_BLOCK_AND(state[6], state[7]));
|
||||||
|
AES_BLOCK_STORE(pad, msg0);
|
||||||
|
AES_BLOCK_STORE(pad + AES_BLOCK_LENGTH, msg1);
|
||||||
|
|
||||||
|
memset(pad + len, 0, sizeof pad - len);
|
||||||
|
memcpy(dst, pad, len);
|
||||||
|
|
||||||
|
msg0 = AES_BLOCK_LOAD(pad);
|
||||||
|
msg1 = AES_BLOCK_LOAD(pad + AES_BLOCK_LENGTH);
|
||||||
|
|
||||||
|
aegis128l_update(state, msg0, msg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const uint8_t *m, size_t mlen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k)
|
||||||
|
{
|
||||||
|
aes_block_t state[8];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t src[RATE];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t dst[RATE];
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
aegis128l_init(k, npub, state);
|
||||||
|
|
||||||
|
for (i = 0; i + RATE <= adlen; i += RATE) {
|
||||||
|
aegis128l_absorb(ad + i, state);
|
||||||
|
}
|
||||||
|
if (adlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, ad + i, adlen % RATE);
|
||||||
|
aegis128l_absorb(src, state);
|
||||||
|
}
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis128l_enc(c + i, m + i, state);
|
||||||
|
}
|
||||||
|
if (mlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, m + i, mlen % RATE);
|
||||||
|
aegis128l_enc(dst, src, state);
|
||||||
|
memcpy(c + i, dst, mlen % RATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
aegis128l_mac(mac, maclen, adlen, mlen, state);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
decrypt_detached(uint8_t *m, const uint8_t *c, size_t clen, const uint8_t *mac, size_t maclen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k)
|
||||||
|
{
|
||||||
|
aes_block_t state[8];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t src[RATE];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t dst[RATE];
|
||||||
|
CRYPTO_ALIGN(16) uint8_t computed_mac[32];
|
||||||
|
const size_t mlen = clen;
|
||||||
|
size_t i;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
aegis128l_init(k, npub, state);
|
||||||
|
|
||||||
|
for (i = 0; i + RATE <= adlen; i += RATE) {
|
||||||
|
aegis128l_absorb(ad + i, state);
|
||||||
|
}
|
||||||
|
if (adlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, ad + i, adlen % RATE);
|
||||||
|
aegis128l_absorb(src, state);
|
||||||
|
}
|
||||||
|
if (m != NULL) {
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis128l_dec(m + i, c + i, state);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis128l_dec(dst, c + i, state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mlen % RATE) {
|
||||||
|
if (m != NULL) {
|
||||||
|
aegis128l_declast(m + i, c + i, mlen % RATE, state);
|
||||||
|
} else {
|
||||||
|
aegis128l_declast(dst, c + i, mlen % RATE, state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
COMPILER_ASSERT(sizeof computed_mac >= 32);
|
||||||
|
aegis128l_mac(computed_mac, maclen, adlen, mlen, state);
|
||||||
|
ret = -1;
|
||||||
|
if (maclen == 16) {
|
||||||
|
ret = crypto_verify_16(computed_mac, mac);
|
||||||
|
} else if (maclen == 32) {
|
||||||
|
ret = crypto_verify_32(computed_mac, mac);
|
||||||
|
}
|
||||||
|
if (ret != 0 && m != NULL) {
|
||||||
|
memset(m, 0, mlen);
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
59
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_soft.c
vendored
Normal file
59
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_soft.c
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
#include "private/softaes.h"
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
|
||||||
|
#include "aegis128l_soft.h"
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef SoftAesBlock aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) softaes_block_xor((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) softaes_block_and((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) softaes_block_load(A)
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) softaes_block_load64x2((A), (B))
|
||||||
|
#define AES_BLOCK_STORE(A, B) softaes_block_store((A), (B))
|
||||||
|
#define AES_ENC(A, B) softaes_block_encrypt((A), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis128l_update(aes_block_t *const state, const aes_block_t d1, const aes_block_t d2)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[7];
|
||||||
|
state[7] = AES_ENC(state[6], state[7]);
|
||||||
|
state[6] = AES_ENC(state[5], state[6]);
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_ENC(state[3], state[4]);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_ENC(tmp, state[0]);
|
||||||
|
|
||||||
|
state[0] = AES_BLOCK_XOR(state[0], d1);
|
||||||
|
state[4] = AES_BLOCK_XOR(state[4], d2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis128l_common.h"
|
||||||
|
|
||||||
|
struct aegis128l_implementation aegis128l_soft_implementation = { SODIUM_C99(.encrypt_detached =)
|
||||||
|
encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =)
|
||||||
|
decrypt_detached };
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_soft.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_soft.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis128l_soft_H
|
||||||
|
#define aegis128l_soft_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis128l_implementation aegis128l_soft_implementation;
|
||||||
|
|
||||||
|
#endif
|
17
deps/libsodium/src/libsodium/crypto_aead/aegis128l/implementations.h
vendored
Normal file
17
deps/libsodium/src/libsodium/crypto_aead/aegis128l/implementations.h
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef aegis128l_implementations_H
|
||||||
|
#define aegis128l_implementations_H
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "crypto_aead_aegis128l.h"
|
||||||
|
|
||||||
|
typedef struct aegis128l_implementation {
|
||||||
|
int (*encrypt_detached)(uint8_t *c, uint8_t *mac, size_t maclen, const uint8_t *m, size_t mlen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k);
|
||||||
|
int (*decrypt_detached)(uint8_t *m, const uint8_t *c, size_t clen, const uint8_t *mac,
|
||||||
|
size_t maclen, const uint8_t *ad, size_t adlen, const uint8_t *npub,
|
||||||
|
const uint8_t *k);
|
||||||
|
} aegis128l_implementation;
|
||||||
|
|
||||||
|
#endif
|
158
deps/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c
vendored
Normal file
158
deps/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
#include "private/common.h"
|
||||||
|
#include "private/implementations.h"
|
||||||
|
#include "randombytes.h"
|
||||||
|
#include "runtime.h"
|
||||||
|
|
||||||
|
#include "aegis256_soft.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
#include "aegis256_armcrypto.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
#include "aegis256_aesni.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const aegis256_implementation *implementation = &aegis256_soft_implementation;
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis256_keybytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis256_KEYBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis256_nsecbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis256_NSECBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis256_npubbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis256_NPUBBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis256_abytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis256_ABYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aegis256_messagebytes_max(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aegis256_MESSAGEBYTES_MAX;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
crypto_aead_aegis256_keygen(unsigned char k[crypto_aead_aegis256_KEYBYTES])
|
||||||
|
{
|
||||||
|
randombytes_buf(k, crypto_aead_aegis256_KEYBYTES);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis256_encrypt(unsigned char *c, unsigned long long *clen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
unsigned long long clen = 0ULL;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret =
|
||||||
|
crypto_aead_aegis256_encrypt_detached(c, c + mlen, NULL, m, mlen, ad, adlen, nsec, npub, k);
|
||||||
|
if (clen_p != NULL) {
|
||||||
|
if (ret == 0) {
|
||||||
|
clen = mlen + crypto_aead_aegis256_ABYTES;
|
||||||
|
}
|
||||||
|
*clen_p = clen;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis256_decrypt(unsigned char *m, unsigned long long *mlen_p, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *ad, unsigned long long adlen,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
unsigned long long mlen = 0ULL;
|
||||||
|
int ret = -1;
|
||||||
|
|
||||||
|
if (clen >= crypto_aead_aegis256_ABYTES) {
|
||||||
|
ret = crypto_aead_aegis256_decrypt_detached(m, nsec, c, clen - crypto_aead_aegis256_ABYTES,
|
||||||
|
c + clen - crypto_aead_aegis256_ABYTES, ad,
|
||||||
|
adlen, npub, k);
|
||||||
|
}
|
||||||
|
if (mlen_p != NULL) {
|
||||||
|
if (ret == 0) {
|
||||||
|
mlen = clen - crypto_aead_aegis256_ABYTES;
|
||||||
|
}
|
||||||
|
*mlen_p = mlen;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis256_encrypt_detached(unsigned char *c, unsigned char *mac,
|
||||||
|
unsigned long long *maclen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
const size_t maclen = crypto_aead_aegis256_ABYTES;
|
||||||
|
|
||||||
|
if (maclen_p != NULL) {
|
||||||
|
*maclen_p = maclen;
|
||||||
|
}
|
||||||
|
if (mlen > crypto_aead_aegis256_MESSAGEBYTES_MAX ||
|
||||||
|
adlen > crypto_aead_aegis256_MESSAGEBYTES_MAX) {
|
||||||
|
sodium_misuse();
|
||||||
|
}
|
||||||
|
return implementation->encrypt_detached(c, mac, maclen, m, (size_t) mlen, ad, (size_t) adlen,
|
||||||
|
npub, k);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aegis256_decrypt_detached(unsigned char *m, unsigned char *nsec, const unsigned char *c,
|
||||||
|
unsigned long long clen, const unsigned char *mac,
|
||||||
|
const unsigned char *ad, unsigned long long adlen,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
const size_t maclen = crypto_aead_aegis256_ABYTES;
|
||||||
|
|
||||||
|
if (clen > crypto_aead_aegis256_MESSAGEBYTES_MAX ||
|
||||||
|
adlen > crypto_aead_aegis256_MESSAGEBYTES_MAX) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return implementation->decrypt_detached(m, c, (size_t) clen, mac, maclen, ad, (size_t) adlen,
|
||||||
|
npub, k);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
_crypto_aead_aegis256_pick_best_implementation(void)
|
||||||
|
{
|
||||||
|
implementation = &aegis256_soft_implementation;
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
if (sodium_runtime_has_armcrypto()) {
|
||||||
|
implementation = &aegis256_armcrypto_implementation;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
if (sodium_runtime_has_aesni() & sodium_runtime_has_avx()) {
|
||||||
|
implementation = &aegis256_aesni_implementation;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return 0; /* LCOV_EXCL_LINE */
|
||||||
|
}
|
65
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_aesni.c
vendored
Normal file
65
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_aesni.c
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_AVXINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
|
||||||
|
#include "aegis256_aesni.h"
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute push(__attribute__((target("aes,avx"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC target("aes,avx")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "private/sse2_64_32.h"
|
||||||
|
#include <immintrin.h>
|
||||||
|
#include <wmmintrin.h>
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef __m128i aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) _mm_xor_si128((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) _mm_and_si128((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) _mm_loadu_si128((const aes_block_t *) (const void *) (A))
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) _mm_set_epi64x((long long) (A), (long long) (B))
|
||||||
|
#define AES_BLOCK_STORE(A, B) _mm_storeu_si128((aes_block_t *) (void *) (A), (B))
|
||||||
|
#define AES_ENC(A, B) _mm_aesenc_si128((A), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis256_update(aes_block_t *const state, const aes_block_t d)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[5];
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_ENC(state[3], state[4]);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_BLOCK_XOR(AES_ENC(tmp, state[0]), d);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis256_common.h"
|
||||||
|
|
||||||
|
struct aegis256_implementation aegis256_aesni_implementation = { SODIUM_C99(.encrypt_detached =)
|
||||||
|
encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =)
|
||||||
|
decrypt_detached };
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_aesni.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_aesni.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis256_aesni_H
|
||||||
|
#define aegis256_aesni_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis256_implementation aegis256_aesni_implementation;
|
||||||
|
|
||||||
|
#endif
|
70
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_armcrypto.c
vendored
Normal file
70
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_armcrypto.c
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_ARMCRYPTO) && defined(NATIVE_LITTLE_ENDIAN)
|
||||||
|
|
||||||
|
#include "aegis256_armcrypto.h"
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute push(__attribute__((target("neon,crypto,aes"))), apply_to = function)
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC target("+simd+crypto")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __ARM_FEATURE_CRYPTO
|
||||||
|
#define __ARM_FEATURE_CRYPTO 1
|
||||||
|
#endif
|
||||||
|
#ifndef __ARM_FEATURE_AES
|
||||||
|
#define __ARM_FEATURE_AES 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <arm_neon.h>
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef uint8x16_t aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) veorq_u8((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) vandq_u8((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) vld1q_u8(A)
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) vreinterpretq_u8_u64(vsetq_lane_u64((A), vmovq_n_u64(B), 1))
|
||||||
|
#define AES_BLOCK_STORE(A, B) vst1q_u8((A), (B))
|
||||||
|
#define AES_ENC(A, B) veorq_u8(vaesmcq_u8(vaeseq_u8((A), vmovq_n_u8(0))), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis256_update(aes_block_t *const state, const aes_block_t d)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[5];
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_ENC(state[3], state[4]);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_BLOCK_XOR(AES_ENC(tmp, state[0]), d);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis256_common.h"
|
||||||
|
|
||||||
|
struct aegis256_implementation aegis256_armcrypto_implementation = { SODIUM_C99(.encrypt_detached =)
|
||||||
|
encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =)
|
||||||
|
decrypt_detached };
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
#pragma clang attribute pop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_armcrypto.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_armcrypto.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis256_armcrypto_H
|
||||||
|
#define aegis256_armcrypto_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis256_implementation aegis256_armcrypto_implementation;
|
||||||
|
|
||||||
|
#endif
|
214
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_common.h
vendored
Normal file
214
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_common.h
vendored
Normal file
@ -0,0 +1,214 @@
|
|||||||
|
#define RATE 16
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis256_init(const uint8_t *key, const uint8_t *nonce, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
static CRYPTO_ALIGN(AES_BLOCK_LENGTH)
|
||||||
|
const uint8_t c0_[AES_BLOCK_LENGTH] = { 0x00, 0x01, 0x01, 0x02, 0x03, 0x05, 0x08, 0x0d,
|
||||||
|
0x15, 0x22, 0x37, 0x59, 0x90, 0xe9, 0x79, 0x62 };
|
||||||
|
static CRYPTO_ALIGN(AES_BLOCK_LENGTH)
|
||||||
|
const uint8_t c1_[AES_BLOCK_LENGTH] = { 0xdb, 0x3d, 0x18, 0x55, 0x6d, 0xc2, 0x2f, 0xf1,
|
||||||
|
0x20, 0x11, 0x31, 0x42, 0x73, 0xb5, 0x28, 0xdd };
|
||||||
|
|
||||||
|
const aes_block_t c0 = AES_BLOCK_LOAD(c0_);
|
||||||
|
const aes_block_t c1 = AES_BLOCK_LOAD(c1_);
|
||||||
|
const aes_block_t k0 = AES_BLOCK_LOAD(key);
|
||||||
|
const aes_block_t k1 = AES_BLOCK_LOAD(key + AES_BLOCK_LENGTH);
|
||||||
|
const aes_block_t n0 = AES_BLOCK_LOAD(nonce);
|
||||||
|
const aes_block_t n1 = AES_BLOCK_LOAD(nonce + AES_BLOCK_LENGTH);
|
||||||
|
const aes_block_t k0_n0 = AES_BLOCK_XOR(k0, n0);
|
||||||
|
const aes_block_t k1_n1 = AES_BLOCK_XOR(k1, n1);
|
||||||
|
int i;
|
||||||
|
|
||||||
|
state[0] = k0_n0;
|
||||||
|
state[1] = k1_n1;
|
||||||
|
state[2] = c1;
|
||||||
|
state[3] = c0;
|
||||||
|
state[4] = AES_BLOCK_XOR(k0, c0);
|
||||||
|
state[5] = AES_BLOCK_XOR(k1, c1);
|
||||||
|
for (i = 0; i < 4; i++) {
|
||||||
|
aegis256_update(state, k0);
|
||||||
|
aegis256_update(state, k1);
|
||||||
|
aegis256_update(state, k0_n0);
|
||||||
|
aegis256_update(state, k1_n1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis256_mac(uint8_t *mac, size_t maclen, size_t adlen, size_t mlen, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
tmp = AES_BLOCK_LOAD_64x2(((uint64_t) mlen) << 3, ((uint64_t) adlen) << 3);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, state[3]);
|
||||||
|
|
||||||
|
for (i = 0; i < 7; i++) {
|
||||||
|
aegis256_update(state, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (maclen == 16) {
|
||||||
|
tmp = AES_BLOCK_XOR(state[5], state[4]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[3], state[2]));
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_XOR(state[1], state[0]));
|
||||||
|
AES_BLOCK_STORE(mac, tmp);
|
||||||
|
} else if (maclen == 32) {
|
||||||
|
tmp = AES_BLOCK_XOR(AES_BLOCK_XOR(state[2], state[1]), state[0]);
|
||||||
|
AES_BLOCK_STORE(mac, tmp);
|
||||||
|
tmp = AES_BLOCK_XOR(AES_BLOCK_XOR(state[5], state[4]), state[3]);
|
||||||
|
AES_BLOCK_STORE(mac + 16, tmp);
|
||||||
|
} else {
|
||||||
|
memset(mac, 0, maclen);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis256_absorb(const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg;
|
||||||
|
|
||||||
|
msg = AES_BLOCK_LOAD(src);
|
||||||
|
aegis256_update(state, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis256_enc(uint8_t *const dst, const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg;
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
msg = AES_BLOCK_LOAD(src);
|
||||||
|
tmp = AES_BLOCK_XOR(msg, state[5]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, state[4]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, state[1]);
|
||||||
|
tmp = AES_BLOCK_XOR(tmp, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
AES_BLOCK_STORE(dst, tmp);
|
||||||
|
|
||||||
|
aegis256_update(state, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis256_dec(uint8_t *const dst, const uint8_t *const src, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
aes_block_t msg;
|
||||||
|
|
||||||
|
msg = AES_BLOCK_LOAD(src);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[5]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[4]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[1]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
AES_BLOCK_STORE(dst, msg);
|
||||||
|
|
||||||
|
aegis256_update(state, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aegis256_declast(uint8_t *const dst, const uint8_t *const src, size_t len, aes_block_t *const state)
|
||||||
|
{
|
||||||
|
uint8_t pad[RATE];
|
||||||
|
aes_block_t msg;
|
||||||
|
|
||||||
|
memset(pad, 0, sizeof pad);
|
||||||
|
memcpy(pad, src, len);
|
||||||
|
|
||||||
|
msg = AES_BLOCK_LOAD(pad);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[5]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[4]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, state[1]);
|
||||||
|
msg = AES_BLOCK_XOR(msg, AES_BLOCK_AND(state[2], state[3]));
|
||||||
|
AES_BLOCK_STORE(pad, msg);
|
||||||
|
|
||||||
|
memset(pad + len, 0, sizeof pad - len);
|
||||||
|
memcpy(dst, pad, len);
|
||||||
|
|
||||||
|
msg = AES_BLOCK_LOAD(pad);
|
||||||
|
|
||||||
|
aegis256_update(state, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const uint8_t *m, size_t mlen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k)
|
||||||
|
{
|
||||||
|
aes_block_t state[6];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t src[RATE];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t dst[RATE];
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
aegis256_init(k, npub, state);
|
||||||
|
|
||||||
|
for (i = 0; i + RATE <= adlen; i += RATE) {
|
||||||
|
aegis256_absorb(ad + i, state);
|
||||||
|
}
|
||||||
|
if (adlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, ad + i, adlen % RATE);
|
||||||
|
aegis256_absorb(src, state);
|
||||||
|
}
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis256_enc(c + i, m + i, state);
|
||||||
|
}
|
||||||
|
if (mlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, m + i, mlen % RATE);
|
||||||
|
aegis256_enc(dst, src, state);
|
||||||
|
memcpy(c + i, dst, mlen % RATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
aegis256_mac(mac, maclen, adlen, mlen, state);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
decrypt_detached(uint8_t *m, const uint8_t *c, size_t clen, const uint8_t *mac, size_t maclen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k)
|
||||||
|
{
|
||||||
|
aes_block_t state[6];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t src[RATE];
|
||||||
|
CRYPTO_ALIGN(RATE) uint8_t dst[RATE];
|
||||||
|
CRYPTO_ALIGN(16) uint8_t computed_mac[32];
|
||||||
|
const size_t mlen = clen;
|
||||||
|
size_t i;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
aegis256_init(k, npub, state);
|
||||||
|
|
||||||
|
for (i = 0; i + RATE <= adlen; i += RATE) {
|
||||||
|
aegis256_absorb(ad + i, state);
|
||||||
|
}
|
||||||
|
if (adlen % RATE) {
|
||||||
|
memset(src, 0, RATE);
|
||||||
|
memcpy(src, ad + i, adlen % RATE);
|
||||||
|
aegis256_absorb(src, state);
|
||||||
|
}
|
||||||
|
if (m != NULL) {
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis256_dec(m + i, c + i, state);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (i = 0; i + RATE <= mlen; i += RATE) {
|
||||||
|
aegis256_dec(dst, c + i, state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mlen % RATE) {
|
||||||
|
if (m != NULL) {
|
||||||
|
aegis256_declast(m + i, c + i, mlen % RATE, state);
|
||||||
|
} else {
|
||||||
|
aegis256_declast(dst, c + i, mlen % RATE, state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
COMPILER_ASSERT(sizeof computed_mac >= 32);
|
||||||
|
aegis256_mac(computed_mac, maclen, adlen, mlen, state);
|
||||||
|
ret = -1;
|
||||||
|
if (maclen == 16) {
|
||||||
|
ret = crypto_verify_16(computed_mac, mac);
|
||||||
|
} else if (maclen == 32) {
|
||||||
|
ret = crypto_verify_32(computed_mac, mac);
|
||||||
|
}
|
||||||
|
if (ret != 0 && m != NULL) {
|
||||||
|
memset(m, 0, mlen);
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
54
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_soft.c
vendored
Normal file
54
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_soft.c
vendored
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "core.h"
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
#include "crypto_verify_16.h"
|
||||||
|
#include "crypto_verify_32.h"
|
||||||
|
#include "export.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
#include "private/common.h"
|
||||||
|
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
#include "private/softaes.h"
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
|
||||||
|
#include "aegis256_soft.h"
|
||||||
|
|
||||||
|
#define AES_BLOCK_LENGTH 16
|
||||||
|
|
||||||
|
typedef SoftAesBlock aes_block_t;
|
||||||
|
#define AES_BLOCK_XOR(A, B) softaes_block_xor((A), (B))
|
||||||
|
#define AES_BLOCK_AND(A, B) softaes_block_and((A), (B))
|
||||||
|
#define AES_BLOCK_LOAD(A) softaes_block_load(A)
|
||||||
|
#define AES_BLOCK_LOAD_64x2(A, B) softaes_block_load64x2((A), (B))
|
||||||
|
#define AES_BLOCK_STORE(A, B) softaes_block_store((A), (B))
|
||||||
|
#define AES_ENC(A, B) softaes_block_encrypt((A), (B))
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
aegis256_update(aes_block_t *const state, const aes_block_t d)
|
||||||
|
{
|
||||||
|
aes_block_t tmp;
|
||||||
|
|
||||||
|
tmp = state[5];
|
||||||
|
state[5] = AES_ENC(state[4], state[5]);
|
||||||
|
state[4] = AES_ENC(state[3], state[4]);
|
||||||
|
state[3] = AES_ENC(state[2], state[3]);
|
||||||
|
state[2] = AES_ENC(state[1], state[2]);
|
||||||
|
state[1] = AES_ENC(state[0], state[1]);
|
||||||
|
state[0] = AES_BLOCK_XOR(AES_ENC(tmp, state[0]), d);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "aegis256_common.h"
|
||||||
|
|
||||||
|
struct aegis256_implementation aegis256_soft_implementation = { SODIUM_C99(.encrypt_detached =)
|
||||||
|
encrypt_detached,
|
||||||
|
SODIUM_C99(.decrypt_detached =)
|
||||||
|
decrypt_detached };
|
||||||
|
|
||||||
|
#endif
|
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_soft.h
vendored
Normal file
8
deps/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_soft.h
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef aegis256_soft_H
|
||||||
|
#define aegis256_soft_H
|
||||||
|
|
||||||
|
#include "implementations.h"
|
||||||
|
|
||||||
|
extern struct aegis256_implementation aegis256_soft_implementation;
|
||||||
|
|
||||||
|
#endif
|
17
deps/libsodium/src/libsodium/crypto_aead/aegis256/implementations.h
vendored
Normal file
17
deps/libsodium/src/libsodium/crypto_aead/aegis256/implementations.h
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef aegis256_implementations_H
|
||||||
|
#define aegis256_implementations_H
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "crypto_aead_aegis256.h"
|
||||||
|
|
||||||
|
typedef struct aegis256_implementation {
|
||||||
|
int (*encrypt_detached)(uint8_t *c, uint8_t *mac, size_t maclen, const uint8_t *m, size_t mlen,
|
||||||
|
const uint8_t *ad, size_t adlen, const uint8_t *npub, const uint8_t *k);
|
||||||
|
int (*decrypt_detached)(uint8_t *m, const uint8_t *c, size_t clen, const uint8_t *mac,
|
||||||
|
size_t maclen, const uint8_t *ad, size_t adlen, const uint8_t *npub,
|
||||||
|
const uint8_t *k);
|
||||||
|
} aegis256_implementation;
|
||||||
|
|
||||||
|
#endif
|
157
deps/libsodium/src/libsodium/crypto_aead/aes256gcm/aead_aes256gcm.c
vendored
Normal file
157
deps/libsodium/src/libsodium/crypto_aead/aes256gcm/aead_aes256gcm.c
vendored
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "crypto_aead_aes256gcm.h"
|
||||||
|
#include "private/common.h"
|
||||||
|
#include "randombytes.h"
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_keybytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aes256gcm_KEYBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_nsecbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aes256gcm_NSECBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_npubbytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aes256gcm_NPUBBYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_abytes(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aes256gcm_ABYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_statebytes(void)
|
||||||
|
{
|
||||||
|
return (sizeof(crypto_aead_aes256gcm_state) + (size_t) 15U) & ~(size_t) 15U;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
crypto_aead_aes256gcm_messagebytes_max(void)
|
||||||
|
{
|
||||||
|
return crypto_aead_aes256gcm_MESSAGEBYTES_MAX;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
crypto_aead_aes256gcm_keygen(unsigned char k[crypto_aead_aes256gcm_KEYBYTES])
|
||||||
|
{
|
||||||
|
randombytes_buf(k, crypto_aead_aes256gcm_KEYBYTES);
|
||||||
|
}
|
||||||
|
|
||||||
|
#if !((defined(HAVE_ARMCRYPTO) && defined(__clang__) && defined(NATIVE_LITTLE_ENDIAN)) || \
|
||||||
|
(defined(HAVE_TMMINTRIN_H) && defined(HAVE_WMMINTRIN_H)))
|
||||||
|
|
||||||
|
#ifndef ENOSYS
|
||||||
|
#define ENOSYS ENXIO
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_encrypt_detached(unsigned char *c, unsigned char *mac,
|
||||||
|
unsigned long long *maclen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_encrypt(unsigned char *c, unsigned long long *clen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_decrypt_detached(unsigned char *m, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *mac, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *npub,
|
||||||
|
const unsigned char *k)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_decrypt(unsigned char *m, unsigned long long *mlen_p, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *ad, unsigned long long adlen,
|
||||||
|
const unsigned char *npub, const unsigned char *k)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_beforenm(crypto_aead_aes256gcm_state *st_, const unsigned char *k)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_encrypt_detached_afternm(unsigned char *c, unsigned char *mac,
|
||||||
|
unsigned long long *maclen_p, const unsigned char *m,
|
||||||
|
unsigned long long mlen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *nsec,
|
||||||
|
const unsigned char *npub,
|
||||||
|
const crypto_aead_aes256gcm_state *st_)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_encrypt_afternm(unsigned char *c, unsigned long long *clen_p,
|
||||||
|
const unsigned char *m, unsigned long long mlen,
|
||||||
|
const unsigned char *ad, unsigned long long adlen,
|
||||||
|
const unsigned char *nsec, const unsigned char *npub,
|
||||||
|
const crypto_aead_aes256gcm_state *st_)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_decrypt_detached_afternm(unsigned char *m, unsigned char *nsec,
|
||||||
|
const unsigned char *c, unsigned long long clen,
|
||||||
|
const unsigned char *mac, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *npub,
|
||||||
|
const crypto_aead_aes256gcm_state *st_)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_decrypt_afternm(unsigned char *m, unsigned long long *mlen_p,
|
||||||
|
unsigned char *nsec, const unsigned char *c,
|
||||||
|
unsigned long long clen, const unsigned char *ad,
|
||||||
|
unsigned long long adlen, const unsigned char *npub,
|
||||||
|
const crypto_aead_aes256gcm_state *st_)
|
||||||
|
{
|
||||||
|
errno = ENOSYS;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
crypto_aead_aes256gcm_is_available(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -17,9 +17,7 @@
|
|||||||
#if defined(HAVE_TMMINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
#if defined(HAVE_TMMINTRIN_H) && defined(HAVE_WMMINTRIN_H)
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#pragma GCC target("ssse3")
|
#pragma GCC target("avx,aes,pclmul")
|
||||||
#pragma GCC target("aes")
|
|
||||||
#pragma GCC target("pclmul")
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(_MSC_VER) || _MSC_VER < 1800
|
#if !defined(_MSC_VER) || _MSC_VER < 1800
|
||||||
@ -444,6 +442,11 @@ aes_gcm_encrypt_generic(const State *st, GHash *sth, unsigned char mac[ABYTES],
|
|||||||
counter = incr_counters(rev_counters, counter, PARALLEL_BLOCKS);
|
counter = incr_counters(rev_counters, counter, PARALLEL_BLOCKS);
|
||||||
encrypt_xor_wide(st, dst + i, src + i, rev_counters);
|
encrypt_xor_wide(st, dst + i, src + i, rev_counters);
|
||||||
|
|
||||||
|
PREFETCH_READ(src + i + PARALLEL_BLOCKS * 16);
|
||||||
|
#if PARALLEL_BLOCKS >= 64 / 16
|
||||||
|
PREFETCH_READ(src + i + PARALLEL_BLOCKS * 16 + 64);
|
||||||
|
#endif
|
||||||
|
|
||||||
pi = i - PARALLEL_BLOCKS * 16;
|
pi = i - PARALLEL_BLOCKS * 16;
|
||||||
u = gh_update0(sth, dst + pi, st->hx[2 * PARALLEL_BLOCKS - 1 - 0]);
|
u = gh_update0(sth, dst + pi, st->hx[2 * PARALLEL_BLOCKS - 1 - 0]);
|
||||||
for (j = 1; j < PARALLEL_BLOCKS; j += 1) {
|
for (j = 1; j < PARALLEL_BLOCKS; j += 1) {
|
||||||
@ -454,6 +457,10 @@ aes_gcm_encrypt_generic(const State *st, GHash *sth, unsigned char mac[ABYTES],
|
|||||||
encrypt_xor_wide(st, dst + i + PARALLEL_BLOCKS * 16, src + i + PARALLEL_BLOCKS * 16,
|
encrypt_xor_wide(st, dst + i + PARALLEL_BLOCKS * 16, src + i + PARALLEL_BLOCKS * 16,
|
||||||
rev_counters);
|
rev_counters);
|
||||||
|
|
||||||
|
PREFETCH_READ(src + i + 2 * PARALLEL_BLOCKS * 16);
|
||||||
|
#if PARALLEL_BLOCKS >= 64 / 16
|
||||||
|
PREFETCH_READ(src + i + 2 * PARALLEL_BLOCKS * 16 + 64);
|
||||||
|
#endif
|
||||||
pi = i;
|
pi = i;
|
||||||
for (j = 0; j < PARALLEL_BLOCKS; j += 1) {
|
for (j = 0; j < PARALLEL_BLOCKS; j += 1) {
|
||||||
gh_update(&u, dst + pi + j * 16, st->hx[PARALLEL_BLOCKS - 1 - j]);
|
gh_update(&u, dst + pi + j * 16, st->hx[PARALLEL_BLOCKS - 1 - j]);
|
||||||
@ -748,7 +755,7 @@ crypto_aead_aes256gcm_encrypt_detached_afternm(unsigned char *c, unsigned char *
|
|||||||
}
|
}
|
||||||
gh_required_blocks = required_blocks(ad_len, m_len);
|
gh_required_blocks = required_blocks(ad_len, m_len);
|
||||||
if (gh_required_blocks == 0) {
|
if (gh_required_blocks == 0) {
|
||||||
memset(mac, 0x00, ABYTES);
|
memset(mac, 0xd0, ABYTES);
|
||||||
memset(c, 0, m_len);
|
memset(c, 0, m_len);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -923,7 +930,7 @@ crypto_aead_aes256gcm_decrypt_detached_afternm(unsigned char *m, unsigned char *
|
|||||||
|
|
||||||
if (crypto_verify_16(mac, computed_mac) != 0) {
|
if (crypto_verify_16(mac, computed_mac) != 0) {
|
||||||
sodium_memzero(computed_mac, sizeof computed_mac);
|
sodium_memzero(computed_mac, sizeof computed_mac);
|
||||||
memset(m, 0x00, m_len);
|
memset(m, 0xd0, m_len);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
@ -996,155 +1003,7 @@ crypto_aead_aes256gcm_decrypt(unsigned char *m, unsigned long long *mlen_p, unsi
|
|||||||
int
|
int
|
||||||
crypto_aead_aes256gcm_is_available(void)
|
crypto_aead_aes256gcm_is_available(void)
|
||||||
{
|
{
|
||||||
return sodium_runtime_has_pclmul() & sodium_runtime_has_aesni();
|
return sodium_runtime_has_pclmul() & sodium_runtime_has_aesni() & sodium_runtime_has_avx();
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#ifndef ENOSYS
|
|
||||||
#define ENOSYS ENXIO
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_encrypt_detached(unsigned char *c, unsigned char *mac,
|
|
||||||
unsigned long long *maclen_p, const unsigned char *m,
|
|
||||||
unsigned long long mlen, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *nsec,
|
|
||||||
const unsigned char *npub, const unsigned char *k)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_encrypt(unsigned char *c, unsigned long long *clen_p, const unsigned char *m,
|
|
||||||
unsigned long long mlen, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *nsec,
|
|
||||||
const unsigned char *npub, const unsigned char *k)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_decrypt_detached(unsigned char *m, unsigned char *nsec,
|
|
||||||
const unsigned char *c, unsigned long long clen,
|
|
||||||
const unsigned char *mac, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *npub,
|
|
||||||
const unsigned char *k)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_decrypt(unsigned char *m, unsigned long long *mlen_p, unsigned char *nsec,
|
|
||||||
const unsigned char *c, unsigned long long clen,
|
|
||||||
const unsigned char *ad, unsigned long long adlen,
|
|
||||||
const unsigned char *npub, const unsigned char *k)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_beforenm(crypto_aead_aes256gcm_state *st_, const unsigned char *k)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_encrypt_detached_afternm(unsigned char *c, unsigned char *mac,
|
|
||||||
unsigned long long *maclen_p, const unsigned char *m,
|
|
||||||
unsigned long long mlen, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *nsec,
|
|
||||||
const unsigned char *npub,
|
|
||||||
const crypto_aead_aes256gcm_state *st_)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_encrypt_afternm(unsigned char *c, unsigned long long *clen_p,
|
|
||||||
const unsigned char *m, unsigned long long mlen,
|
|
||||||
const unsigned char *ad, unsigned long long adlen,
|
|
||||||
const unsigned char *nsec, const unsigned char *npub,
|
|
||||||
const crypto_aead_aes256gcm_state *st_)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_decrypt_detached_afternm(unsigned char *m, unsigned char *nsec,
|
|
||||||
const unsigned char *c, unsigned long long clen,
|
|
||||||
const unsigned char *mac, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *npub,
|
|
||||||
const crypto_aead_aes256gcm_state *st_)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_decrypt_afternm(unsigned char *m, unsigned long long *mlen_p,
|
|
||||||
unsigned char *nsec, const unsigned char *c,
|
|
||||||
unsigned long long clen, const unsigned char *ad,
|
|
||||||
unsigned long long adlen, const unsigned char *npub,
|
|
||||||
const crypto_aead_aes256gcm_state *st_)
|
|
||||||
{
|
|
||||||
errno = ENOSYS;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
crypto_aead_aes256gcm_is_available(void)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_keybytes(void)
|
|
||||||
{
|
|
||||||
return crypto_aead_aes256gcm_KEYBYTES;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_nsecbytes(void)
|
|
||||||
{
|
|
||||||
return crypto_aead_aes256gcm_NSECBYTES;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_npubbytes(void)
|
|
||||||
{
|
|
||||||
return crypto_aead_aes256gcm_NPUBBYTES;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_abytes(void)
|
|
||||||
{
|
|
||||||
return crypto_aead_aes256gcm_ABYTES;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_statebytes(void)
|
|
||||||
{
|
|
||||||
return (sizeof(crypto_aead_aes256gcm_state) + (size_t) 15U) & ~(size_t) 15U;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t
|
|
||||||
crypto_aead_aes256gcm_messagebytes_max(void)
|
|
||||||
{
|
|
||||||
return crypto_aead_aes256gcm_MESSAGEBYTES_MAX;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
crypto_aead_aes256gcm_keygen(unsigned char k[crypto_aead_aes256gcm_KEYBYTES])
|
|
||||||
{
|
|
||||||
randombytes_buf(k, crypto_aead_aes256gcm_KEYBYTES);
|
|
||||||
}
|
|
||||||
|
1032
deps/libsodium/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
vendored
Normal file
1032
deps/libsodium/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -2512,6 +2512,21 @@ sc25519_is_canonical(const unsigned char s[32])
|
|||||||
return (c != 0);
|
return (c != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* multiply by the cofactor */
|
||||||
|
static void
|
||||||
|
ge25519_clear_cofactor(ge25519_p3 *p3)
|
||||||
|
{
|
||||||
|
ge25519_p1p1 p1;
|
||||||
|
ge25519_p2 p2;
|
||||||
|
|
||||||
|
ge25519_p3_dbl(&p1, p3);
|
||||||
|
ge25519_p1p1_to_p2(&p2, &p1);
|
||||||
|
ge25519_p2_dbl(&p1, &p2);
|
||||||
|
ge25519_p1p1_to_p2(&p2, &p1);
|
||||||
|
ge25519_p2_dbl(&p1, &p2);
|
||||||
|
ge25519_p1p1_to_p3(p3, &p1);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ge25519_elligator2(unsigned char s[32], const fe25519 r, const unsigned char x_sign)
|
ge25519_elligator2(unsigned char s[32], const fe25519 r, const unsigned char x_sign)
|
||||||
{
|
{
|
||||||
@ -2520,8 +2535,6 @@ ge25519_elligator2(unsigned char s[32], const fe25519 r, const unsigned char x_s
|
|||||||
fe25519 rr2;
|
fe25519 rr2;
|
||||||
fe25519 x, x2, x3;
|
fe25519 x, x2, x3;
|
||||||
ge25519_p3 p3;
|
ge25519_p3 p3;
|
||||||
ge25519_p1p1 p1;
|
|
||||||
ge25519_p2 p2;
|
|
||||||
unsigned int notsquare;
|
unsigned int notsquare;
|
||||||
|
|
||||||
fe25519_sq2(rr2, r);
|
fe25519_sq2(rr2, r);
|
||||||
@ -2565,14 +2578,7 @@ ge25519_elligator2(unsigned char s[32], const fe25519 r, const unsigned char x_s
|
|||||||
abort(); /* LCOV_EXCL_LINE */
|
abort(); /* LCOV_EXCL_LINE */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* multiply by the cofactor */
|
ge25519_clear_cofactor(&p3);
|
||||||
ge25519_p3_dbl(&p1, &p3);
|
|
||||||
ge25519_p1p1_to_p2(&p2, &p1);
|
|
||||||
ge25519_p2_dbl(&p1, &p2);
|
|
||||||
ge25519_p1p1_to_p2(&p2, &p1);
|
|
||||||
ge25519_p2_dbl(&p1, &p2);
|
|
||||||
ge25519_p1p1_to_p3(&p3, &p1);
|
|
||||||
|
|
||||||
ge25519_p3_tobytes(s, &p3);
|
ge25519_p3_tobytes(s, &p3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user