├── Pre-Synthesis Simulation ├── @_opt │ ├── _lib.qdb │ └── _lib1_0.qdb ├── aes.v ├── aes_core.v ├── aes_decipher_block.v ├── aes_encipher_block.v ├── aes_inv_sbox.v ├── aes_key_mem.v ├── aes_sbox.v ├── simulation.cr.mti ├── simulation.mpf ├── tb_aes.v ├── tb_aes_core.v ├── tb_aes_decipher_block.v ├── tb_aes_encipher_block.v ├── tb_aes_key_mem.v ├── vsim.wlf └── work │ ├── -info │ ├── _info │ ├── _lib.qdb │ ├── _lib1_0.qdb │ ├── _lib1_0.qpg │ ├── _lib1_0.qtl │ └── _vmake ├── Project Pics ├── AES.jpg └── Pre-Synthesis_Simulation.PNG ├── README.md └── rtl ├── aes.v ├── aes_core.v ├── aes_decipher_block.v ├── aes_encipher_block.v ├── aes_inv_sbox.v ├── aes_key_mem.v ├── aes_sbox.v ├── tb_aes.v ├── tb_aes_core.v ├── tb_aes_decipher_block.v ├── tb_aes_encipher_block.v └── tb_aes_key_mem.v /Pre-Synthesis Simulation/@_opt/_lib.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/@_opt/_lib.qdb -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/@_opt/_lib1_0.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/@_opt/_lib1_0.qdb -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_core.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_decipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_decipher_block.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_encipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_encipher_block.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_inv_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_inv_sbox.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_key_mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_key_mem.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/aes_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/aes_sbox.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/simulation.cr.mti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/simulation.cr.mti -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/simulation.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/simulation.mpf -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/tb_aes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/tb_aes.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/tb_aes_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/tb_aes_core.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/tb_aes_decipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/tb_aes_decipher_block.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/tb_aes_encipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/tb_aes_encipher_block.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/tb_aes_key_mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/tb_aes_key_mem.v -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/vsim.wlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/vsim.wlf -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/-info -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/_info -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_lib.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/_lib.qdb -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_lib1_0.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/_lib1_0.qdb -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_lib1_0.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/_lib1_0.qpg -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_lib1_0.qtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Pre-Synthesis Simulation/work/_lib1_0.qtl -------------------------------------------------------------------------------- /Pre-Synthesis Simulation/work/_vmake: -------------------------------------------------------------------------------- 1 | m255 2 | K4 3 | z0 4 | cModel Technology 5 | -------------------------------------------------------------------------------- /Project Pics/AES.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Project Pics/AES.jpg -------------------------------------------------------------------------------- /Project Pics/Pre-Synthesis_Simulation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/Project Pics/Pre-Synthesis_Simulation.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/README.md -------------------------------------------------------------------------------- /rtl/aes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes.v -------------------------------------------------------------------------------- /rtl/aes_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_core.v -------------------------------------------------------------------------------- /rtl/aes_decipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_decipher_block.v -------------------------------------------------------------------------------- /rtl/aes_encipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_encipher_block.v -------------------------------------------------------------------------------- /rtl/aes_inv_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_inv_sbox.v -------------------------------------------------------------------------------- /rtl/aes_key_mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_key_mem.v -------------------------------------------------------------------------------- /rtl/aes_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/aes_sbox.v -------------------------------------------------------------------------------- /rtl/tb_aes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/tb_aes.v -------------------------------------------------------------------------------- /rtl/tb_aes_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/tb_aes_core.v -------------------------------------------------------------------------------- /rtl/tb_aes_decipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/tb_aes_decipher_block.v -------------------------------------------------------------------------------- /rtl/tb_aes_encipher_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/tb_aes_encipher_block.v -------------------------------------------------------------------------------- /rtl/tb_aes_key_mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/ASIC-implementation-of-AES/HEAD/rtl/tb_aes_key_mem.v --------------------------------------------------------------------------------