├── .gitignore ├── LICENSE ├── README.md ├── abbrev3.bib ├── abbrv.sty ├── crypto.bib ├── delimiters.sty ├── diss.tex ├── dissertation.cls ├── figures ├── bison │ ├── bison-logo.jpg │ └── bison-qed.jpg └── plots │ ├── bison │ ├── ddt_5bit_k13_avg_w_rounds_1.dat │ ├── ddt_5bit_k13_w13_rounds_1.dat │ ├── ddt_6bit_k13_avg_w_rounds_1.dat │ ├── ddt_6bit_k13_w13_rounds_1.dat │ ├── degrees_ks_seed23.dat │ ├── degrees_random_seed23.dat │ ├── transposed_degrees_random_n17_seed42_bison.dat │ └── transposed_degrees_random_n17_seed42_rndK_rndF.dat │ └── slp │ ├── cauchy_4x4_4_bmp.dat │ ├── cauchy_4x4_4_naive.dat │ ├── cauchy_4x4_4_paar1.dat │ ├── circulant_left_4x4_4_bmp.dat │ ├── circulant_left_4x4_4_naive.dat │ ├── circulant_left_4x4_4_paar1.dat │ ├── circulant_right_4x4_4_bmp.dat │ ├── circulant_right_4x4_4_naive.dat │ ├── circulant_right_4x4_4_paar1.dat │ ├── enum_4x4_4_bmp.dat │ ├── enum_4x4_4_naive.dat │ ├── enum_4x4_4_paar1.dat │ ├── enum_circulant_left_4x4_4_bmp.dat │ ├── enum_circulant_left_4x4_4_naive.dat │ ├── enum_circulant_left_4x4_4_paar1.dat │ ├── enum_circulant_right_4x4_4_bmp.dat │ ├── enum_circulant_right_4x4_4_naive.dat │ ├── enum_circulant_right_4x4_4_paar1.dat │ ├── enum_hadamard_4x4_4.dat │ ├── enum_hadamard_4x4_4_bmp.dat │ ├── enum_hadamard_4x4_4_naive.dat │ ├── enum_hadamard_4x4_4_paar1.dat │ ├── enum_toeplitz_4x4_4_bmp.dat │ ├── enum_toeplitz_4x4_4_naive.dat │ ├── enum_toeplitz_4x4_4_paar1.dat │ ├── hadamard_4x4_4_bmp.dat │ ├── hadamard_4x4_4_naive.dat │ ├── hadamard_4x4_4_paar1.dat │ ├── toeplitz_4x4_4_bmp.dat │ ├── toeplitz_4x4_4_naive.dat │ ├── toeplitz_4x4_4_paar1.dat │ ├── vandermonde_4x4_4_bmp.dat │ ├── vandermonde_4x4_4_naive.dat │ └── vandermonde_4x4_4_paar1.dat ├── frontbackmatter ├── abstract.tex ├── conclusion.tex ├── titlepage.tex └── zusammenfassung.tex ├── mainmatter ├── act.tex ├── bison.tex ├── introduction.tex ├── key-recovery.tex ├── preliminaries.tex ├── slps.tex └── subspace-trails.tex ├── makefile ├── pgflibraryarrows.new.code.tex ├── references.bib └── tikzlibrarycrypto.symbols.code.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/README.md -------------------------------------------------------------------------------- /abbrev3.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/abbrev3.bib -------------------------------------------------------------------------------- /abbrv.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/abbrv.sty -------------------------------------------------------------------------------- /crypto.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/crypto.bib -------------------------------------------------------------------------------- /delimiters.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/delimiters.sty -------------------------------------------------------------------------------- /diss.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/diss.tex -------------------------------------------------------------------------------- /dissertation.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/dissertation.cls -------------------------------------------------------------------------------- /figures/bison/bison-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/bison/bison-logo.jpg -------------------------------------------------------------------------------- /figures/bison/bison-qed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/bison/bison-qed.jpg -------------------------------------------------------------------------------- /figures/plots/bison/ddt_5bit_k13_avg_w_rounds_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/ddt_5bit_k13_avg_w_rounds_1.dat -------------------------------------------------------------------------------- /figures/plots/bison/ddt_5bit_k13_w13_rounds_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/ddt_5bit_k13_w13_rounds_1.dat -------------------------------------------------------------------------------- /figures/plots/bison/ddt_6bit_k13_avg_w_rounds_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/ddt_6bit_k13_avg_w_rounds_1.dat -------------------------------------------------------------------------------- /figures/plots/bison/ddt_6bit_k13_w13_rounds_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/ddt_6bit_k13_w13_rounds_1.dat -------------------------------------------------------------------------------- /figures/plots/bison/degrees_ks_seed23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/degrees_ks_seed23.dat -------------------------------------------------------------------------------- /figures/plots/bison/degrees_random_seed23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/degrees_random_seed23.dat -------------------------------------------------------------------------------- /figures/plots/bison/transposed_degrees_random_n17_seed42_bison.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/transposed_degrees_random_n17_seed42_bison.dat -------------------------------------------------------------------------------- /figures/plots/bison/transposed_degrees_random_n17_seed42_rndK_rndF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/bison/transposed_degrees_random_n17_seed42_rndK_rndF.dat -------------------------------------------------------------------------------- /figures/plots/slp/cauchy_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/cauchy_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/cauchy_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/cauchy_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/cauchy_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/cauchy_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_left_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_left_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_left_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_left_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_left_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_left_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_right_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_right_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_right_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_right_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/circulant_right_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/circulant_right_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_left_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_left_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_left_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_left_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_left_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_left_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_right_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_right_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_right_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_right_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_circulant_right_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_circulant_right_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_hadamard_4x4_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_hadamard_4x4_4.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_hadamard_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_hadamard_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_hadamard_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_hadamard_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_hadamard_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_hadamard_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_toeplitz_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_toeplitz_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_toeplitz_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_toeplitz_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/enum_toeplitz_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/enum_toeplitz_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/hadamard_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/hadamard_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/hadamard_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/hadamard_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/hadamard_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/hadamard_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/toeplitz_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/toeplitz_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/toeplitz_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/toeplitz_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/toeplitz_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/toeplitz_4x4_4_paar1.dat -------------------------------------------------------------------------------- /figures/plots/slp/vandermonde_4x4_4_bmp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/vandermonde_4x4_4_bmp.dat -------------------------------------------------------------------------------- /figures/plots/slp/vandermonde_4x4_4_naive.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/vandermonde_4x4_4_naive.dat -------------------------------------------------------------------------------- /figures/plots/slp/vandermonde_4x4_4_paar1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/figures/plots/slp/vandermonde_4x4_4_paar1.dat -------------------------------------------------------------------------------- /frontbackmatter/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/frontbackmatter/abstract.tex -------------------------------------------------------------------------------- /frontbackmatter/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/frontbackmatter/conclusion.tex -------------------------------------------------------------------------------- /frontbackmatter/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/frontbackmatter/titlepage.tex -------------------------------------------------------------------------------- /frontbackmatter/zusammenfassung.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/frontbackmatter/zusammenfassung.tex -------------------------------------------------------------------------------- /mainmatter/act.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/act.tex -------------------------------------------------------------------------------- /mainmatter/bison.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/bison.tex -------------------------------------------------------------------------------- /mainmatter/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/introduction.tex -------------------------------------------------------------------------------- /mainmatter/key-recovery.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/key-recovery.tex -------------------------------------------------------------------------------- /mainmatter/preliminaries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/preliminaries.tex -------------------------------------------------------------------------------- /mainmatter/slps.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/slps.tex -------------------------------------------------------------------------------- /mainmatter/subspace-trails.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/mainmatter/subspace-trails.tex -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/makefile -------------------------------------------------------------------------------- /pgflibraryarrows.new.code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/pgflibraryarrows.new.code.tex -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/references.bib -------------------------------------------------------------------------------- /tikzlibrarycrypto.symbols.code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfasante/phd_thesis/HEAD/tikzlibrarycrypto.symbols.code.tex --------------------------------------------------------------------------------