From 9bfa30ae6ad9daacb5896bc58009188f459e35a5 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 22 Nov 2015 00:02:00 +0100 Subject: [PATCH] api.h -> stream_chacha20_ref.h --- builds/msvc/vs2010/libsodium/libsodium.vcxproj | 4 ++-- builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters | 4 ++-- builds/msvc/vs2012/libsodium/libsodium.vcxproj | 4 ++-- builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters | 4 ++-- builds/msvc/vs2013/libsodium/libsodium.vcxproj | 4 ++-- builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters | 4 ++-- builds/msvc/vs2015/libsodium/libsodium.vcxproj | 4 ++-- builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters | 4 ++-- src/libsodium/Makefile.am | 2 +- .../crypto_stream/chacha20/ref/stream_chacha20_ref.c | 2 +- .../chacha20/ref/{api.h => stream_chacha20_ref.h} | 0 src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) rename src/libsodium/crypto_stream/chacha20/ref/{api.h => stream_chacha20_ref.h} (100%) diff --git a/builds/msvc/vs2010/libsodium/libsodium.vcxproj b/builds/msvc/vs2010/libsodium/libsodium.vcxproj index 6ec3b0c6..e36a02df 100644 --- a/builds/msvc/vs2010/libsodium/libsodium.vcxproj +++ b/builds/msvc/vs2010/libsodium/libsodium.vcxproj @@ -109,7 +109,7 @@ - + @@ -348,4 +348,4 @@ - \ No newline at end of file + diff --git a/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters index 5e959902..2eb70981 100644 --- a/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +++ b/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters @@ -679,7 +679,7 @@ src\crypto_scalarmult\curve25519\ref10 - + src\crypto_stream\chacha20\ref @@ -1067,4 +1067,4 @@ src\crypto_onetimeauth\poly1305\donna - \ No newline at end of file + diff --git a/builds/msvc/vs2012/libsodium/libsodium.vcxproj b/builds/msvc/vs2012/libsodium/libsodium.vcxproj index 5168733a..763c0835 100644 --- a/builds/msvc/vs2012/libsodium/libsodium.vcxproj +++ b/builds/msvc/vs2012/libsodium/libsodium.vcxproj @@ -110,7 +110,7 @@ - + @@ -349,4 +349,4 @@ - \ No newline at end of file + diff --git a/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters index 3601e714..28e6e768 100644 --- a/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +++ b/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters @@ -682,7 +682,7 @@ src\crypto_scalarmult\curve25519\ref10 - + src\crypto_stream\chacha20\ref @@ -1070,4 +1070,4 @@ src\crypto_sign\ed25519\ref10 - \ No newline at end of file + diff --git a/builds/msvc/vs2013/libsodium/libsodium.vcxproj b/builds/msvc/vs2013/libsodium/libsodium.vcxproj index 80163eb6..080fcb4c 100644 --- a/builds/msvc/vs2013/libsodium/libsodium.vcxproj +++ b/builds/msvc/vs2013/libsodium/libsodium.vcxproj @@ -109,7 +109,7 @@ - + @@ -348,4 +348,4 @@ - \ No newline at end of file + diff --git a/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters index 1a7e45f4..3e940ba0 100644 --- a/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +++ b/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters @@ -679,7 +679,7 @@ src\crypto_scalarmult\curve25519\ref10 - + src\crypto_stream\chacha20\ref @@ -1067,4 +1067,4 @@ src\crypto_scalarmult\curve25519 - \ No newline at end of file + diff --git a/builds/msvc/vs2015/libsodium/libsodium.vcxproj b/builds/msvc/vs2015/libsodium/libsodium.vcxproj index 1b599f54..5ef697db 100644 --- a/builds/msvc/vs2015/libsodium/libsodium.vcxproj +++ b/builds/msvc/vs2015/libsodium/libsodium.vcxproj @@ -103,7 +103,7 @@ - + @@ -355,4 +355,4 @@ - \ No newline at end of file + diff --git a/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters b/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters index e1ffb80f..23d35111 100644 --- a/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +++ b/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters @@ -727,7 +727,7 @@ src\crypto_scalarmult\curve25519\ref10 - + src\crypto_stream\chacha20\ref @@ -1094,4 +1094,4 @@ src\crypto_generichash\blake2\ref - \ No newline at end of file + diff --git a/src/libsodium/Makefile.am b/src/libsodium/Makefile.am index d8beed58..d2be0d8a 100644 --- a/src/libsodium/Makefile.am +++ b/src/libsodium/Makefile.am @@ -123,7 +123,7 @@ libsodium_la_SOURCES = \ crypto_sign/ed25519/ref10/sqrtm1.h \ crypto_stream/crypto_stream.c \ crypto_stream/chacha20/stream_chacha20_api.c \ - crypto_stream/chacha20/ref/api.h \ + crypto_stream/chacha20/ref/stream_chacha20_ref.h \ crypto_stream/chacha20/ref/stream_chacha20_ref.c \ crypto_stream/salsa20/stream_salsa20_api.c \ crypto_stream/xsalsa20/stream_xsalsa20_api.c \ diff --git a/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c b/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c index e5ca1c95..848fdf73 100644 --- a/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +++ b/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c @@ -9,8 +9,8 @@ #include #include -#include "api.h" #include "crypto_stream_chacha20.h" +#include "stream_chacha20_ref.h" #include "utils.h" struct chacha_ctx { diff --git a/src/libsodium/crypto_stream/chacha20/ref/api.h b/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.h similarity index 100% rename from src/libsodium/crypto_stream/chacha20/ref/api.h rename to src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.h diff --git a/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c b/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c index 14c51ca1..2d0a0669 100644 --- a/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c +++ b/src/libsodium/crypto_stream/chacha20/stream_chacha20_api.c @@ -1,5 +1,5 @@ #include "crypto_stream_chacha20.h" -#include "ref/api.h" +#include "ref/stream_chacha20_ref.h" size_t crypto_stream_chacha20_keybytes(void) {