From bb67b383efd82b737a2b921ab5ca603f4a259c0e Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 20 Feb 2017 09:50:34 +0100 Subject: [PATCH] Drop the _api suffixes --- src/libsodium/Makefile.am | 72 +++++++++---------- ...uth_hmacsha256_api.c => auth_hmacsha256.c} | 0 ...uth_hmacsha512_api.c => auth_hmacsha512.c} | 0 ...acsha512256_api.c => auth_hmacsha512256.c} | 0 .../{core_hsalsa20_api.c => core_hsalsa20.c} | 0 .../{core_hsalsa20.c => core_hsalsa20_ref2.c} | 0 .../{core_salsa20_api.c => core_salsa20.c} | 0 .../{core_salsa20.c => core_salsa20_ref.c} | 0 ...{core_salsa2012_api.c => core_salsa2012.c} | 0 ...{core_salsa2012.c => core_salsa2012_ref.c} | 0 .../{core_salsa208_api.c => core_salsa208.c} | 0 .../{core_salsa208.c => core_salsa208_ref.c} | 0 ...hash_blake2_api.c => generichash_blake2.c} | 0 .../cp/{hash_sha256.c => hash_sha256_cp.c} | 0 .../{hash_sha256_api.c => hash_sha256.c} | 0 .../cp/{hash_sha512.c => hash_sha512_cp.c} | 0 .../{hash_sha512_api.c => hash_sha512.c} | 0 ..._siphash24.c => shorthash_siphash24_ref.c} | 0 ..._siphash24_api.c => shorthash_siphash24.c} | 0 .../{sign_ed25519_api.c => sign_ed25519.c} | 0 .../{portable => nacl}/afternm_aes128ctr.c | 0 .../{portable => nacl}/beforenm_aes128ctr.c | 0 .../aes128ctr/{portable => nacl}/common.h | 0 .../aes128ctr/{portable => nacl}/consts.h | 0 .../{portable => nacl}/consts_aes128ctr.c | 0 .../aes128ctr/{portable => nacl}/int128.h | 0 .../{portable => nacl}/int128_aes128ctr.c | 0 .../stream_aes128ctr_nacl.c} | 0 .../aes128ctr/{portable => nacl}/types.h | 0 .../xor_afternm_aes128ctr.c | 0 ...eam_aes128ctr_api.c => stream_aes128ctr.c} | 0 ...{stream_salsa20_api.c => stream_salsa20.c} | 0 ...eam_salsa2012.c => stream_salsa2012_ref.c} | 0 ...eam_salsa2012_api.c => stream_salsa2012.c} | 0 ...tream_salsa208.c => stream_salsa208_ref.c} | 0 ...tream_salsa208_api.c => stream_salsa208.c} | 0 36 files changed, 36 insertions(+), 36 deletions(-) rename src/libsodium/crypto_auth/hmacsha256/{auth_hmacsha256_api.c => auth_hmacsha256.c} (100%) rename src/libsodium/crypto_auth/hmacsha512/{auth_hmacsha512_api.c => auth_hmacsha512.c} (100%) rename src/libsodium/crypto_auth/hmacsha512256/{auth_hmacsha512256_api.c => auth_hmacsha512256.c} (100%) rename src/libsodium/crypto_core/hsalsa20/{core_hsalsa20_api.c => core_hsalsa20.c} (100%) rename src/libsodium/crypto_core/hsalsa20/ref2/{core_hsalsa20.c => core_hsalsa20_ref2.c} (100%) rename src/libsodium/crypto_core/salsa20/{core_salsa20_api.c => core_salsa20.c} (100%) rename src/libsodium/crypto_core/salsa20/ref/{core_salsa20.c => core_salsa20_ref.c} (100%) rename src/libsodium/crypto_core/salsa2012/{core_salsa2012_api.c => core_salsa2012.c} (100%) rename src/libsodium/crypto_core/salsa2012/ref/{core_salsa2012.c => core_salsa2012_ref.c} (100%) rename src/libsodium/crypto_core/salsa208/{core_salsa208_api.c => core_salsa208.c} (100%) rename src/libsodium/crypto_core/salsa208/ref/{core_salsa208.c => core_salsa208_ref.c} (100%) rename src/libsodium/crypto_generichash/blake2b/{generichash_blake2_api.c => generichash_blake2.c} (100%) rename src/libsodium/crypto_hash/sha256/cp/{hash_sha256.c => hash_sha256_cp.c} (100%) rename src/libsodium/crypto_hash/sha256/{hash_sha256_api.c => hash_sha256.c} (100%) rename src/libsodium/crypto_hash/sha512/cp/{hash_sha512.c => hash_sha512_cp.c} (100%) rename src/libsodium/crypto_hash/sha512/{hash_sha512_api.c => hash_sha512.c} (100%) rename src/libsodium/crypto_shorthash/siphash24/ref/{shorthash_siphash24.c => shorthash_siphash24_ref.c} (100%) rename src/libsodium/crypto_shorthash/siphash24/{shorthash_siphash24_api.c => shorthash_siphash24.c} (100%) rename src/libsodium/crypto_sign/ed25519/{sign_ed25519_api.c => sign_ed25519.c} (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/afternm_aes128ctr.c (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/beforenm_aes128ctr.c (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/common.h (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/consts.h (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/consts_aes128ctr.c (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/int128.h (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/int128_aes128ctr.c (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable/stream_aes128ctr.c => nacl/stream_aes128ctr_nacl.c} (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/types.h (100%) rename src/libsodium/crypto_stream/aes128ctr/{portable => nacl}/xor_afternm_aes128ctr.c (100%) rename src/libsodium/crypto_stream/aes128ctr/{stream_aes128ctr_api.c => stream_aes128ctr.c} (100%) rename src/libsodium/crypto_stream/salsa20/{stream_salsa20_api.c => stream_salsa20.c} (100%) rename src/libsodium/crypto_stream/salsa2012/ref/{stream_salsa2012.c => stream_salsa2012_ref.c} (100%) rename src/libsodium/crypto_stream/salsa2012/{stream_salsa2012_api.c => stream_salsa2012.c} (100%) rename src/libsodium/crypto_stream/salsa208/ref/{stream_salsa208.c => stream_salsa208_ref.c} (100%) rename src/libsodium/crypto_stream/salsa208/{stream_salsa208_api.c => stream_salsa208.c} (100%) diff --git a/src/libsodium/Makefile.am b/src/libsodium/Makefile.am index 6f49b17d..e5f88b0d 100644 --- a/src/libsodium/Makefile.am +++ b/src/libsodium/Makefile.am @@ -4,13 +4,13 @@ lib_LTLIBRARIES = \ libsodium_la_SOURCES = \ crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \ crypto_auth/crypto_auth.c \ - crypto_auth/hmacsha256/auth_hmacsha256_api.c \ + crypto_auth/hmacsha256/auth_hmacsha256.c \ crypto_auth/hmacsha256/cp/hmac_hmacsha256.c \ crypto_auth/hmacsha256/cp/verify_hmacsha256.c \ - crypto_auth/hmacsha512/auth_hmacsha512_api.c \ + crypto_auth/hmacsha512/auth_hmacsha512.c \ crypto_auth/hmacsha512/cp/hmac_hmacsha512.c \ crypto_auth/hmacsha512/cp/verify_hmacsha512.c \ - crypto_auth/hmacsha512256/auth_hmacsha512256_api.c \ + crypto_auth/hmacsha512256/auth_hmacsha512256.c \ crypto_auth/hmacsha512256/cp/hmac_hmacsha512256.c \ crypto_auth/hmacsha512256/cp/verify_hmacsha512256.c \ crypto_box/crypto_box.c \ @@ -20,12 +20,12 @@ libsodium_la_SOURCES = \ crypto_core/curve25519/ref10/base.h \ crypto_core/curve25519/ref10/base2.h \ crypto_core/curve25519/ref10/curve25519_ref10.c \ - crypto_core/hsalsa20/ref2/core_hsalsa20.c \ - crypto_core/hsalsa20/core_hsalsa20_api.c \ - crypto_core/salsa20/ref/core_salsa20.c \ - crypto_core/salsa20/core_salsa20_api.c \ + crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c \ + crypto_core/hsalsa20/core_hsalsa20.c \ + crypto_core/salsa20/ref/core_salsa20_ref.c \ + crypto_core/salsa20/core_salsa20.c \ crypto_generichash/crypto_generichash.c \ - crypto_generichash/blake2b/generichash_blake2_api.c \ + crypto_generichash/blake2b/generichash_blake2.c \ crypto_generichash/blake2b/ref/blake2-impl.h \ crypto_generichash/blake2b/ref/blake2.h \ crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ @@ -35,12 +35,12 @@ libsodium_la_SOURCES = \ crypto_generichash/blake2b/ref/blake2b-ref.c \ crypto_generichash/blake2b/ref/generichash_blake2b.c \ crypto_hash/crypto_hash.c \ - crypto_hash/sha256/hash_sha256_api.c \ - crypto_hash/sha256/cp/hash_sha256.c \ - crypto_hash/sha512/hash_sha512_api.c \ - crypto_hash/sha512/cp/hash_sha512.c \ - crypto_kdf/crypto_kdf.c \ + crypto_hash/sha256/hash_sha256.c \ + crypto_hash/sha256/cp/hash_sha256_cp.c \ + crypto_hash/sha512/hash_sha512.c \ + crypto_hash/sha512/cp/hash_sha512_cp.c \ crypto_kdf/blake2b/kdf_blake2b.c \ + crypto_kdf/crypto_kdf.c \ crypto_onetimeauth/crypto_onetimeauth.c \ crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \ crypto_onetimeauth/poly1305/onetimeauth_poly1305.h \ @@ -75,10 +75,10 @@ libsodium_la_SOURCES = \ crypto_secretbox/crypto_secretbox_easy.c \ crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \ crypto_shorthash/crypto_shorthash.c \ - crypto_shorthash/siphash24/shorthash_siphash24_api.c \ - crypto_shorthash/siphash24/ref/shorthash_siphash24.c \ + crypto_shorthash/siphash24/shorthash_siphash24.c \ + crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c \ crypto_sign/crypto_sign.c \ - crypto_sign/ed25519/sign_ed25519_api.c \ + crypto_sign/ed25519/sign_ed25519.c \ crypto_sign/ed25519/ref10/keypair.c \ crypto_sign/ed25519/ref10/open.c \ crypto_sign/ed25519/ref10/sign.c \ @@ -87,7 +87,7 @@ libsodium_la_SOURCES = \ crypto_stream/chacha20/ref/stream_chacha20_ref.h \ crypto_stream/chacha20/ref/stream_chacha20_ref.c \ crypto_stream/crypto_stream.c \ - crypto_stream/salsa20/stream_salsa20_api.c \ + crypto_stream/salsa20/stream_salsa20.c \ crypto_stream/xsalsa20/stream_xsalsa20.c \ crypto_verify/sodium/verify.c \ include/sodium/private/common.h \ @@ -163,29 +163,29 @@ libsodium_la_SOURCES += \ crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \ crypto_core/hchacha20/core_hchacha20.c \ crypto_core/hchacha20/core_hchacha20.h \ - crypto_core/salsa2012/ref/core_salsa2012.c \ - crypto_core/salsa2012/core_salsa2012_api.c \ - crypto_core/salsa208/ref/core_salsa208.c \ - crypto_core/salsa208/core_salsa208_api.c \ + crypto_core/salsa2012/core_salsa2012.c \ + crypto_core/salsa2012/ref/core_salsa2012_ref.c \ + crypto_core/salsa208/core_salsa208.c \ + crypto_core/salsa208/ref/core_salsa208_ref.c \ crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \ crypto_sign/ed25519/ref10/obsolete.c \ - crypto_stream/aes128ctr/portable/afternm_aes128ctr.c \ - crypto_stream/aes128ctr/stream_aes128ctr_api.c \ - crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c \ - crypto_stream/aes128ctr/portable/common.h \ - crypto_stream/aes128ctr/portable/consts.h \ - crypto_stream/aes128ctr/portable/consts_aes128ctr.c \ - crypto_stream/aes128ctr/portable/int128.h \ - crypto_stream/aes128ctr/portable/int128_aes128ctr.c \ - crypto_stream/aes128ctr/portable/stream_aes128ctr.c \ - crypto_stream/aes128ctr/portable/types.h \ - crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c \ - crypto_stream/salsa2012/stream_salsa2012_api.c \ - crypto_stream/salsa2012/ref/stream_salsa2012.c \ + crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c \ + crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c \ + crypto_stream/aes128ctr/nacl/common.h \ + crypto_stream/aes128ctr/nacl/consts.h \ + crypto_stream/aes128ctr/nacl/consts_aes128ctr.c \ + crypto_stream/aes128ctr/nacl/int128.h \ + crypto_stream/aes128ctr/nacl/int128_aes128ctr.c \ + crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c \ + crypto_stream/aes128ctr/nacl/types.h \ + crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c \ + crypto_stream/aes128ctr/stream_aes128ctr.c \ + crypto_stream/salsa2012/ref/stream_salsa2012_ref.c \ crypto_stream/salsa2012/ref/xor_salsa2012.c \ - crypto_stream/salsa208/stream_salsa208_api.c \ - crypto_stream/salsa208/ref/stream_salsa208.c \ + crypto_stream/salsa2012/stream_salsa2012.c \ + crypto_stream/salsa208/ref/stream_salsa208_ref.c \ crypto_stream/salsa208/ref/xor_salsa208.c \ + crypto_stream/salsa208/stream_salsa208.c \ crypto_stream/xchacha20/stream_xchacha20.c endif diff --git a/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c b/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c similarity index 100% rename from src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256_api.c rename to src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c diff --git a/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512_api.c b/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c similarity index 100% rename from src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512_api.c rename to src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c diff --git a/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c b/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c similarity index 100% rename from src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256_api.c rename to src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c diff --git a/src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c b/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c similarity index 100% rename from src/libsodium/crypto_core/hsalsa20/core_hsalsa20_api.c rename to src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c diff --git a/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c b/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c similarity index 100% rename from src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20.c rename to src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c diff --git a/src/libsodium/crypto_core/salsa20/core_salsa20_api.c b/src/libsodium/crypto_core/salsa20/core_salsa20.c similarity index 100% rename from src/libsodium/crypto_core/salsa20/core_salsa20_api.c rename to src/libsodium/crypto_core/salsa20/core_salsa20.c diff --git a/src/libsodium/crypto_core/salsa20/ref/core_salsa20.c b/src/libsodium/crypto_core/salsa20/ref/core_salsa20_ref.c similarity index 100% rename from src/libsodium/crypto_core/salsa20/ref/core_salsa20.c rename to src/libsodium/crypto_core/salsa20/ref/core_salsa20_ref.c diff --git a/src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c b/src/libsodium/crypto_core/salsa2012/core_salsa2012.c similarity index 100% rename from src/libsodium/crypto_core/salsa2012/core_salsa2012_api.c rename to src/libsodium/crypto_core/salsa2012/core_salsa2012.c diff --git a/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c b/src/libsodium/crypto_core/salsa2012/ref/core_salsa2012_ref.c similarity index 100% rename from src/libsodium/crypto_core/salsa2012/ref/core_salsa2012.c rename to src/libsodium/crypto_core/salsa2012/ref/core_salsa2012_ref.c diff --git a/src/libsodium/crypto_core/salsa208/core_salsa208_api.c b/src/libsodium/crypto_core/salsa208/core_salsa208.c similarity index 100% rename from src/libsodium/crypto_core/salsa208/core_salsa208_api.c rename to src/libsodium/crypto_core/salsa208/core_salsa208.c diff --git a/src/libsodium/crypto_core/salsa208/ref/core_salsa208.c b/src/libsodium/crypto_core/salsa208/ref/core_salsa208_ref.c similarity index 100% rename from src/libsodium/crypto_core/salsa208/ref/core_salsa208.c rename to src/libsodium/crypto_core/salsa208/ref/core_salsa208_ref.c diff --git a/src/libsodium/crypto_generichash/blake2b/generichash_blake2_api.c b/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c similarity index 100% rename from src/libsodium/crypto_generichash/blake2b/generichash_blake2_api.c rename to src/libsodium/crypto_generichash/blake2b/generichash_blake2.c diff --git a/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c b/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c similarity index 100% rename from src/libsodium/crypto_hash/sha256/cp/hash_sha256.c rename to src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c diff --git a/src/libsodium/crypto_hash/sha256/hash_sha256_api.c b/src/libsodium/crypto_hash/sha256/hash_sha256.c similarity index 100% rename from src/libsodium/crypto_hash/sha256/hash_sha256_api.c rename to src/libsodium/crypto_hash/sha256/hash_sha256.c diff --git a/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c b/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c similarity index 100% rename from src/libsodium/crypto_hash/sha512/cp/hash_sha512.c rename to src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c diff --git a/src/libsodium/crypto_hash/sha512/hash_sha512_api.c b/src/libsodium/crypto_hash/sha512/hash_sha512.c similarity index 100% rename from src/libsodium/crypto_hash/sha512/hash_sha512_api.c rename to src/libsodium/crypto_hash/sha512/hash_sha512.c diff --git a/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c b/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c similarity index 100% rename from src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24.c rename to src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c diff --git a/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c b/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c similarity index 100% rename from src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24_api.c rename to src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c diff --git a/src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c b/src/libsodium/crypto_sign/ed25519/sign_ed25519.c similarity index 100% rename from src/libsodium/crypto_sign/ed25519/sign_ed25519_api.c rename to src/libsodium/crypto_sign/ed25519/sign_ed25519.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/afternm_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/beforenm_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/common.h b/src/libsodium/crypto_stream/aes128ctr/nacl/common.h similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/common.h rename to src/libsodium/crypto_stream/aes128ctr/nacl/common.h diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/consts.h b/src/libsodium/crypto_stream/aes128ctr/nacl/consts.h similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/consts.h rename to src/libsodium/crypto_stream/aes128ctr/nacl/consts.h diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/consts_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/int128.h b/src/libsodium/crypto_stream/aes128ctr/nacl/int128.h similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/int128.h rename to src/libsodium/crypto_stream/aes128ctr/nacl/int128.h diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/int128_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/stream_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/types.h b/src/libsodium/crypto_stream/aes128ctr/nacl/types.h similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/types.h rename to src/libsodium/crypto_stream/aes128ctr/nacl/types.h diff --git a/src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c b/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/portable/xor_afternm_aes128ctr.c rename to src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c diff --git a/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c b/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c similarity index 100% rename from src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr_api.c rename to src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c diff --git a/src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c b/src/libsodium/crypto_stream/salsa20/stream_salsa20.c similarity index 100% rename from src/libsodium/crypto_stream/salsa20/stream_salsa20_api.c rename to src/libsodium/crypto_stream/salsa20/stream_salsa20.c diff --git a/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c b/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c similarity index 100% rename from src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c rename to src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c diff --git a/src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c b/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c similarity index 100% rename from src/libsodium/crypto_stream/salsa2012/stream_salsa2012_api.c rename to src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c diff --git a/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c b/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c similarity index 100% rename from src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c rename to src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c diff --git a/src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c b/src/libsodium/crypto_stream/salsa208/stream_salsa208.c similarity index 100% rename from src/libsodium/crypto_stream/salsa208/stream_salsa208_api.c rename to src/libsodium/crypto_stream/salsa208/stream_salsa208.c