From 959121253d5365fd718014083b649100be6dea68 Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Sat, 7 Oct 2017 11:35:10 +0200 Subject: [PATCH 1/3] rename duplicit rc4.c sober128.c --- src/stream/rc4/{rc4.c => rc4_stream.c} | 0 src/stream/sober128/{sober128.c => sober128_stream.c} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/stream/rc4/{rc4.c => rc4_stream.c} (100%) rename src/stream/sober128/{sober128.c => sober128_stream.c} (100%) diff --git a/src/stream/rc4/rc4.c b/src/stream/rc4/rc4_stream.c similarity index 100% rename from src/stream/rc4/rc4.c rename to src/stream/rc4/rc4_stream.c diff --git a/src/stream/sober128/sober128.c b/src/stream/sober128/sober128_stream.c similarity index 100% rename from src/stream/sober128/sober128.c rename to src/stream/sober128/sober128_stream.c From 2041f9528e3fb279f7a7a786ae9dbcf791e505de Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Sat, 7 Oct 2017 11:35:27 +0200 Subject: [PATCH 2/3] update makefiles --- libtomcrypt_VS2008.vcproj | 4 ++-- makefile.mingw | 2 +- makefile.msvc | 2 +- makefile.unix | 2 +- makefile_include.mk | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libtomcrypt_VS2008.vcproj b/libtomcrypt_VS2008.vcproj index 8c37957..cca67e3 100644 --- a/libtomcrypt_VS2008.vcproj +++ b/libtomcrypt_VS2008.vcproj @@ -2447,7 +2447,7 @@ Name="rc4" > Date: Sat, 7 Oct 2017 18:09:13 +0200 Subject: [PATCH 3/3] fix check_source() --- helper.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.pl b/helper.pl index b18affa..916f881 100755 --- a/helper.pl +++ b/helper.pl @@ -59,7 +59,7 @@ sub check_source { $file !~ m|src/ciphers/.*\.c$| && $file !~ m|src/hashes/.*\.c$| && $file !~ m|src/math/.+_desc.c$| && - $file !~ m|src/stream/sober128/sober128.c$| && + $file !~ m|src/stream/sober128/sober128_stream.c$| && $l =~ /^static\s+\S+\s+([^_][a-zA-Z0-9_]+)\s*\(/) { push @{$troubles->{staticfunc_name}}, "$lineno($1)"; }