First commit after alpha 3. Moved AES code into /src/aes/
authorMark Cannon <vyhdycokio@gmail.com>
Mon, 17 Mar 2008 20:11:31 +0000 (20:11 +0000)
committerMark Cannon <vyhdycokio@gmail.com>
Mon, 17 Mar 2008 20:11:31 +0000 (20:11 +0000)
git-svn-id: https://openitg.svn.sourceforge.net/svnroot/openitg@134 83fadc84-e282-4d84-a09a-c4228d6ae7e5

12 files changed:
src/Makefile.am
src/StepMania-net2003.vcproj
src/aes/aes.h [moved from src/crypto/aes.h with 100% similarity]
src/aes/aescpp.h [moved from src/crypto/aescpp.h with 100% similarity]
src/aes/aescrypt.asm [moved from src/crypto/aescrypt.asm with 100% similarity]
src/aes/aescrypt.c [moved from src/crypto/aescrypt.c with 100% similarity]
src/aes/aescrypt.mmx.asm [moved from src/crypto/aescrypt.mmx.asm with 100% similarity]
src/aes/aeskey.c [moved from src/crypto/aeskey.c with 100% similarity]
src/aes/aesopt.h [moved from src/crypto/aesopt.h with 100% similarity]
src/aes/aestab.c [moved from src/crypto/aestab.c with 100% similarity]
src/aes/aestab.h [moved from src/crypto/aestab.h with 100% similarity]
src/aes/brg_types.h [moved from src/crypto/brg_types.h with 100% similarity]

index 9d02507..6565c30 100755 (executable)
@@ -357,8 +357,10 @@ ibutton/owsesu.c ibutton/owtrnu.c ibutton/owfile.h ibutton/crcutil.c \
 ibutton/ds2480ut.c ibutton/ds2480.h ibutton/linuxlnk.c ibutton/sha18.c \
 ibutton/shaib.c ibutton/shaib.h ibutton/getkey.cpp ibutton/getkey.h
 
+aes = \
+aes/aescrypt.c aes/aeskey.c aes/aestab.c aes/aesopt.h aes/aes.h
+
 crypto = \
-crypto/aescrypt.c crypto/aeskey.c crypto/aestab.c crypto/aesopt.h crypto/aes.h \
 crypto/CryptBn.cpp crypto/CryptBn.h crypto/CryptMD5.cpp crypto/CryptMD5.h crypto/CryptNoise.cpp \
 crypto/CryptPrime.cpp crypto/CryptPrime.h crypto/CryptRSA.cpp crypto/CryptRSA.h \
 crypto/CryptRand.cpp crypto/CryptRand.h crypto/CryptSH512.cpp crypto/CryptSH512.h \
@@ -389,6 +391,7 @@ main_SOURCES = $(Screens) \
                $(Actors) \
                $(GlobalSingletons) \
                $(ibutton) \
+               $(aes) \
                $(crypto) \
                $(cryptopp)
 
index bfce1c3..434abde 100755 (executable)
@@ -2669,19 +2669,19 @@ cl /Zl /nologo /c verstub.cpp /Fo&quot;$(IntDir)&quot;\
                        Name="Crypto"\r
                        Filter="">\r
                        <File\r
-                               RelativePath="crypto\aes.h">\r
+                               RelativePath="aes\aes.h">\r
                        </File>\r
                        <File\r
-                               RelativePath="crypto\aescrypt.c">\r
+                               RelativePath="aes\aescrypt.c">\r
                        </File>\r
                        <File\r
-                               RelativePath="crypto\aeskey.c">\r
+                               RelativePath="aes\aeskey.c">\r
                        </File>\r
                        <File\r
-                               RelativePath="crypto\aesopt.h">\r
+                               RelativePath="aes\aesopt.h">\r
                        </File>\r
                        <File\r
-                               RelativePath="crypto\aestab.c">\r
+                               RelativePath="aes\aestab.c">\r
                        </File>\r
                        <File\r
                                RelativePath="crypto\CryptBn.cpp">\r
similarity index 100%
rename from src/crypto/aes.h
rename to src/aes/aes.h
similarity index 100%
rename from src/crypto/aescpp.h
rename to src/aes/aescpp.h
similarity index 100%
rename from src/crypto/aescrypt.asm
rename to src/aes/aescrypt.asm
similarity index 100%
rename from src/crypto/aescrypt.c
rename to src/aes/aescrypt.c
similarity index 100%
rename from src/crypto/aeskey.c
rename to src/aes/aeskey.c
similarity index 100%
rename from src/crypto/aesopt.h
rename to src/aes/aesopt.h
similarity index 100%
rename from src/crypto/aestab.c
rename to src/aes/aestab.c
similarity index 100%
rename from src/crypto/aestab.h
rename to src/aes/aestab.h
similarity index 100%
rename from src/crypto/brg_types.h
rename to src/aes/brg_types.h