├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── src ├── rtl │ ├── ascon.v │ ├── ascon_core.v │ └── ascon_permutation.v └── tb │ ├── tb_ascon.v │ ├── tb_ascon_core.v │ └── tb_ascon_permutation.v └── toolruns └── Makefile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/README.md -------------------------------------------------------------------------------- /src/rtl/ascon.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/rtl/ascon.v -------------------------------------------------------------------------------- /src/rtl/ascon_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/rtl/ascon_core.v -------------------------------------------------------------------------------- /src/rtl/ascon_permutation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/rtl/ascon_permutation.v -------------------------------------------------------------------------------- /src/tb/tb_ascon.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/tb/tb_ascon.v -------------------------------------------------------------------------------- /src/tb/tb_ascon_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/tb/tb_ascon_core.v -------------------------------------------------------------------------------- /src/tb/tb_ascon_permutation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/src/tb/tb_ascon_permutation.v -------------------------------------------------------------------------------- /toolruns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secworks/ascon/HEAD/toolruns/Makefile --------------------------------------------------------------------------------