From 1ac14d49a2d3636b3a07bf28b452b9f6560dcad9 Mon Sep 17 00:00:00 2001 From: couchot Date: Tue, 2 Sep 2014 08:53:53 +0200 Subject: [PATCH] initialisation --- biblio.bib | 13 +++++++++++++ schemacrypto.dot | 16 ++++++++++++++++ symboles.sty | 1 + 3 files changed, 30 insertions(+) create mode 100644 biblio.bib create mode 100644 schemacrypto.dot create mode 120000 symboles.sty diff --git a/biblio.bib b/biblio.bib new file mode 100644 index 0000000..f45f6a9 --- /dev/null +++ b/biblio.bib @@ -0,0 +1,13 @@ +@incollection{RSA09, +year={2009}, +isbn={978-0-387-69212-8}, +booktitle={Mathématiques et Technologie}, +series={Springer Undergraduate Texts in Mathematics and Technology}, +doi={10.1007/978-0-387-69213-5_7}, +title={La cryptographie à cle publique: le code RSA (1978)}, +author={Christiane Rousseau, Yvan Saint-Aubin}, +url={http://dx.doi.org/10.1007/978-0-387-69213-5_7}, +publisher={Springer New York}, +pages={213-244}, +language={English} +} \ No newline at end of file diff --git a/schemacrypto.dot b/schemacrypto.dot new file mode 100644 index 0000000..86fe81b --- /dev/null +++ b/schemacrypto.dot @@ -0,0 +1,16 @@ +digraph G{ +E [label="Emetteur "] +C [label="Chiffrement"] +A [label="Algorithme + une clé "] +Ap [label="Algorithme + une clé"] +M [label="Message chiffré" style="rounded"] +D [label="Déchiffrement"] +R [label="Récepteur"] + +E -> C +A -> C +C -> M +M -> D +Ap -> D +D -> R +} diff --git a/symboles.sty b/symboles.sty new file mode 120000 index 0000000..16dbd88 --- /dev/null +++ b/symboles.sty @@ -0,0 +1 @@ +../cours-mesi/symboles.sty \ No newline at end of file -- 2.39.5