--- /dev/null
+@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
--- /dev/null
+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
+}