├── .gitignore ├── LICENSE ├── README.md ├── 作业04-2018级信安3-4班.pdf ├── 作业06-ECC-2018级信安3-4班.pdf ├── 大作业 ├── .gitignore ├── README.md └── cryptographyDemo │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── lib │ └── mysql-connector-java-5.0.8-bin.jar │ └── src │ ├── encryptFileGUI │ ├── GUI.java │ ├── GUIFrame.java │ ├── GUItools.java │ └── WaitingTips.java │ ├── encryptTools │ ├── FileProcessingAPI.java │ ├── aes │ │ ├── FileAPI.java │ │ ├── SBoxes.java │ │ ├── Xtime.java │ │ ├── decrypt │ │ │ ├── DECRYPT.java │ │ │ └── Inv_RoundFunction.java │ │ ├── encrypt │ │ │ ├── ENCRYPT.java │ │ │ └── RoundFunction.java │ │ └── keygenerate │ │ │ └── KeyExpansion.java │ ├── des │ │ ├── encrypt │ │ │ ├── DECRYPT_des.java │ │ │ ├── E.java │ │ │ ├── ENCRYPT_des.java │ │ │ ├── F.java │ │ │ ├── P.java │ │ │ ├── S.java │ │ │ ├── box │ │ │ │ └── SBox.java │ │ │ ├── keygenerate │ │ │ │ └── GenerateKey.java │ │ │ └── permutation │ │ │ │ ├── IP.java │ │ │ │ └── IP_inverse.java │ │ └── test.txt │ ├── plainText.txt │ └── rc4 │ │ ├── Init.java │ │ ├── KeyStreamGeneration.java │ │ └── Stable.java │ ├── hash │ └── MessageDigestUtil.java │ ├── jdbc │ └── DatabaseManager.java │ ├── module-info.java │ ├── passwordManagerGUI │ └── PasswordManagerGUIFrame.java │ └── transportFileGUI │ ├── ClientGUIFrame.java │ └── ServerGUIFrame.java ├── 实验01-2018级信安3-4班.pdf ├── 实验01-Code ├── Problem1.java ├── Problem2.java ├── Problem3.java └── Problem4.java ├── 实验02-2018级信安3-4班.pdf ├── 实验02-Code ├── DESBox.java ├── Delete_class.bat ├── Test.java ├── compile.bat ├── data.txt ├── encrypt │ ├── DECRYPT.java │ ├── E.java │ ├── ENCRYPT.java │ ├── F.java │ ├── P.java │ ├── S.java │ ├── box │ │ └── SBox.java │ ├── keygenerate │ │ └── GenerateKey.java │ └── permutation │ │ ├── IP.java │ │ └── IP_inverse.java ├── key.txt ├── 密文.txt └── 解密明文.txt ├── 实验03-2018级信安3-4班.pdf ├── 实验03-Code ├── AES │ ├── FileAPI.java │ ├── SBoxProblem.java │ ├── SBoxes.java │ ├── TestAES.java │ ├── Xtime.java │ ├── decrypt │ │ ├── DECRYPT.java │ │ └── Inv_RoundFunction.java │ ├── encrypt │ │ ├── ENCRYPT.java │ │ └── RoundFunction.java │ └── keygenerate │ │ └── KeyExpansion.java ├── GUItools.java ├── Histoie.jpg ├── MatrixJAR │ └── commons-math3-3.0.jar ├── cipherText.txt ├── decryptedText.txt ├── key.txt ├── plainText.txt ├── test.java ├── tools │ ├── GetTimeTable.java │ ├── X0BTime.txt │ ├── X0DTime.txt │ ├── X0ETime.txt │ ├── X3Time.txt │ ├── X8Time.txt │ └── X9Time.txt └── waitingTips.java ├── 实验04-2018级信安3-4班.pdf ├── 实验05-RSA_ElGamal-2018级信安3-4班.pdf ├── 实验05-RSA_ElGamal-Code └── Theoretial_course_experiment │ ├── Exp1.java │ └── Exp2.java ├── 实验05-序列密码-2018级信安3-4班.pdf ├── 实验05-序列密码-Code ├── Ex03.java ├── Ex04.java ├── Ex05.java ├── assets │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png └── paper.md ├── 实验06-Hash函数-2018级信安3-4班.pdf ├── 实验06-Hash函数-Code └── ONLINE.jpg ├── 实验07-公钥密码RSA-2018级信安3-4班.pdf ├── 实验08-ECC └── coursework │ ├── Oplus.java │ └── Otimes.java ├── 实验08-数字签名ECC-2018级信安3-4班.pdf └── 序列密码 ├── CipherHistoie.jpg ├── DecryptedHistoie.jpg ├── Histoie.jpg ├── RC4 ├── FileOperate │ └── FileAPI.java ├── Init.java ├── KeyStreamGeneration.java └── Stable.java ├── key.txt ├── test.txt └── testRC4.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/README.md -------------------------------------------------------------------------------- /作业04-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/作业04-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /作业06-ECC-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/作业06-ECC-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /大作业/.gitignore: -------------------------------------------------------------------------------- 1 | /.metadata/ 2 | -------------------------------------------------------------------------------- /大作业/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/README.md -------------------------------------------------------------------------------- /大作业/cryptographyDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/.classpath -------------------------------------------------------------------------------- /大作业/cryptographyDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /大作业/cryptographyDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/.project -------------------------------------------------------------------------------- /大作业/cryptographyDemo/lib/mysql-connector-java-5.0.8-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/lib/mysql-connector-java-5.0.8-bin.jar -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptFileGUI/GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptFileGUI/GUI.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptFileGUI/GUIFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptFileGUI/GUIFrame.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptFileGUI/GUItools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptFileGUI/GUItools.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptFileGUI/WaitingTips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptFileGUI/WaitingTips.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/FileProcessingAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/FileProcessingAPI.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/FileAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/FileAPI.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/SBoxes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/SBoxes.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/Xtime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/Xtime.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/decrypt/DECRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/decrypt/DECRYPT.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/decrypt/Inv_RoundFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/decrypt/Inv_RoundFunction.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/encrypt/ENCRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/encrypt/ENCRYPT.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/encrypt/RoundFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/encrypt/RoundFunction.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/aes/keygenerate/KeyExpansion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/aes/keygenerate/KeyExpansion.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/DECRYPT_des.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/DECRYPT_des.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/E.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/ENCRYPT_des.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/ENCRYPT_des.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/F.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/F.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/P.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/P.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/S.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/S.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/box/SBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/box/SBox.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/keygenerate/GenerateKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/keygenerate/GenerateKey.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/permutation/IP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/permutation/IP.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/encrypt/permutation/IP_inverse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/des/encrypt/permutation/IP_inverse.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/des/test.txt: -------------------------------------------------------------------------------- 1 | HELLOWORLD你好世界 -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/plainText.txt: -------------------------------------------------------------------------------- 1 | This is a encrypt test. -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/rc4/Init.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/rc4/Init.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/rc4/KeyStreamGeneration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/rc4/KeyStreamGeneration.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/encryptTools/rc4/Stable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/encryptTools/rc4/Stable.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/hash/MessageDigestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/hash/MessageDigestUtil.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/jdbc/DatabaseManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/jdbc/DatabaseManager.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/module-info.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/passwordManagerGUI/PasswordManagerGUIFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/passwordManagerGUI/PasswordManagerGUIFrame.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/transportFileGUI/ClientGUIFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/transportFileGUI/ClientGUIFrame.java -------------------------------------------------------------------------------- /大作业/cryptographyDemo/src/transportFileGUI/ServerGUIFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/大作业/cryptographyDemo/src/transportFileGUI/ServerGUIFrame.java -------------------------------------------------------------------------------- /实验01-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验01-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验01-Code/Problem1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验01-Code/Problem1.java -------------------------------------------------------------------------------- /实验01-Code/Problem2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验01-Code/Problem2.java -------------------------------------------------------------------------------- /实验01-Code/Problem3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验01-Code/Problem3.java -------------------------------------------------------------------------------- /实验01-Code/Problem4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验01-Code/Problem4.java -------------------------------------------------------------------------------- /实验02-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验02-Code/DESBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/DESBox.java -------------------------------------------------------------------------------- /实验02-Code/Delete_class.bat: -------------------------------------------------------------------------------- 1 | del *.class /q /s -------------------------------------------------------------------------------- /实验02-Code/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/Test.java -------------------------------------------------------------------------------- /实验02-Code/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/compile.bat -------------------------------------------------------------------------------- /实验02-Code/data.txt: -------------------------------------------------------------------------------- 1 | HELLOWORLD你好世界, -------------------------------------------------------------------------------- /实验02-Code/encrypt/DECRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/DECRYPT.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/E.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/ENCRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/ENCRYPT.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/F.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/F.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/P.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/P.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/S.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/S.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/box/SBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/box/SBox.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/keygenerate/GenerateKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/keygenerate/GenerateKey.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/permutation/IP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/permutation/IP.java -------------------------------------------------------------------------------- /实验02-Code/encrypt/permutation/IP_inverse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/encrypt/permutation/IP_inverse.java -------------------------------------------------------------------------------- /实验02-Code/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/key.txt -------------------------------------------------------------------------------- /实验02-Code/密文.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验02-Code/密文.txt -------------------------------------------------------------------------------- /实验02-Code/解密明文.txt: -------------------------------------------------------------------------------- 1 | HELLOWORLD你好世界, -------------------------------------------------------------------------------- /实验03-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验03-Code/AES/FileAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/FileAPI.java -------------------------------------------------------------------------------- /实验03-Code/AES/SBoxProblem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/SBoxProblem.java -------------------------------------------------------------------------------- /实验03-Code/AES/SBoxes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/SBoxes.java -------------------------------------------------------------------------------- /实验03-Code/AES/TestAES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/TestAES.java -------------------------------------------------------------------------------- /实验03-Code/AES/Xtime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/Xtime.java -------------------------------------------------------------------------------- /实验03-Code/AES/decrypt/DECRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/decrypt/DECRYPT.java -------------------------------------------------------------------------------- /实验03-Code/AES/decrypt/Inv_RoundFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/decrypt/Inv_RoundFunction.java -------------------------------------------------------------------------------- /实验03-Code/AES/encrypt/ENCRYPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/encrypt/ENCRYPT.java -------------------------------------------------------------------------------- /实验03-Code/AES/encrypt/RoundFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/encrypt/RoundFunction.java -------------------------------------------------------------------------------- /实验03-Code/AES/keygenerate/KeyExpansion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/AES/keygenerate/KeyExpansion.java -------------------------------------------------------------------------------- /实验03-Code/GUItools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/GUItools.java -------------------------------------------------------------------------------- /实验03-Code/Histoie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/Histoie.jpg -------------------------------------------------------------------------------- /实验03-Code/MatrixJAR/commons-math3-3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/MatrixJAR/commons-math3-3.0.jar -------------------------------------------------------------------------------- /实验03-Code/cipherText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/cipherText.txt -------------------------------------------------------------------------------- /实验03-Code/decryptedText.txt: -------------------------------------------------------------------------------- 1 | This is a AES test -------------------------------------------------------------------------------- /实验03-Code/key.txt: -------------------------------------------------------------------------------- 1 | WHUAESmyPassword -------------------------------------------------------------------------------- /实验03-Code/plainText.txt: -------------------------------------------------------------------------------- 1 | This is a AES test -------------------------------------------------------------------------------- /实验03-Code/test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/test.java -------------------------------------------------------------------------------- /实验03-Code/tools/GetTimeTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/GetTimeTable.java -------------------------------------------------------------------------------- /实验03-Code/tools/X0BTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X0BTime.txt -------------------------------------------------------------------------------- /实验03-Code/tools/X0DTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X0DTime.txt -------------------------------------------------------------------------------- /实验03-Code/tools/X0ETime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X0ETime.txt -------------------------------------------------------------------------------- /实验03-Code/tools/X3Time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X3Time.txt -------------------------------------------------------------------------------- /实验03-Code/tools/X8Time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X8Time.txt -------------------------------------------------------------------------------- /实验03-Code/tools/X9Time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/tools/X9Time.txt -------------------------------------------------------------------------------- /实验03-Code/waitingTips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验03-Code/waitingTips.java -------------------------------------------------------------------------------- /实验04-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验04-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验05-RSA_ElGamal-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-RSA_ElGamal-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验05-RSA_ElGamal-Code/Theoretial_course_experiment/Exp1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-RSA_ElGamal-Code/Theoretial_course_experiment/Exp1.java -------------------------------------------------------------------------------- /实验05-RSA_ElGamal-Code/Theoretial_course_experiment/Exp2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-RSA_ElGamal-Code/Theoretial_course_experiment/Exp2.java -------------------------------------------------------------------------------- /实验05-序列密码-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验05-序列密码-Code/Ex03.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/Ex03.java -------------------------------------------------------------------------------- /实验05-序列密码-Code/Ex04.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/Ex04.java -------------------------------------------------------------------------------- /实验05-序列密码-Code/Ex05.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/Ex05.java -------------------------------------------------------------------------------- /实验05-序列密码-Code/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/assets/1.png -------------------------------------------------------------------------------- /实验05-序列密码-Code/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/assets/2.png -------------------------------------------------------------------------------- /实验05-序列密码-Code/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/assets/3.png -------------------------------------------------------------------------------- /实验05-序列密码-Code/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/assets/4.png -------------------------------------------------------------------------------- /实验05-序列密码-Code/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/assets/5.png -------------------------------------------------------------------------------- /实验05-序列密码-Code/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验05-序列密码-Code/paper.md -------------------------------------------------------------------------------- /实验06-Hash函数-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验06-Hash函数-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验06-Hash函数-Code/ONLINE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验06-Hash函数-Code/ONLINE.jpg -------------------------------------------------------------------------------- /实验07-公钥密码RSA-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验07-公钥密码RSA-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /实验08-ECC/coursework/Oplus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验08-ECC/coursework/Oplus.java -------------------------------------------------------------------------------- /实验08-ECC/coursework/Otimes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验08-ECC/coursework/Otimes.java -------------------------------------------------------------------------------- /实验08-数字签名ECC-2018级信安3-4班.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/实验08-数字签名ECC-2018级信安3-4班.pdf -------------------------------------------------------------------------------- /序列密码/CipherHistoie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/CipherHistoie.jpg -------------------------------------------------------------------------------- /序列密码/DecryptedHistoie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/DecryptedHistoie.jpg -------------------------------------------------------------------------------- /序列密码/Histoie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/Histoie.jpg -------------------------------------------------------------------------------- /序列密码/RC4/FileOperate/FileAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/RC4/FileOperate/FileAPI.java -------------------------------------------------------------------------------- /序列密码/RC4/Init.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/RC4/Init.java -------------------------------------------------------------------------------- /序列密码/RC4/KeyStreamGeneration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/RC4/KeyStreamGeneration.java -------------------------------------------------------------------------------- /序列密码/RC4/Stable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/RC4/Stable.java -------------------------------------------------------------------------------- /序列密码/key.txt: -------------------------------------------------------------------------------- 1 | shen2017 -------------------------------------------------------------------------------- /序列密码/test.txt: -------------------------------------------------------------------------------- 1 | HELLOWORLD! -------------------------------------------------------------------------------- /序列密码/testRC4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waldenth/WHU-Cryptography-experiment/HEAD/序列密码/testRC4.java --------------------------------------------------------------------------------