<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marwan KHELIF &#187; Cryptographie</title>
	<atom:link href="http://www.mkhelif.fr/category/cryptographie/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mkhelif.fr</link>
	<description>Le blog d&#039;un développeur</description>
	<lastBuildDate>Sun, 25 Jul 2010 21:30:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Authentification SSH par clé privée/clé publique</title>
		<link>http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html</link>
		<comments>http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html#comments</comments>
		<pubDate>Mon, 24 Nov 2008 14:36:44 +0000</pubDate>
		<dc:creator>mkhelif</dc:creator>
				<category><![CDATA[Cryptographie]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sécurité]]></category>
		<category><![CDATA[Tutoriel]]></category>

		<guid isPermaLink="false">http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html</guid>
		<description><![CDATA[En voyant l&#8217;intérêt que les visiteurs de mon blog porte à l&#8217;installation d&#8217;un serveur de mail multi-domaines, j&#8217;ai décidé d&#8217;écrire un autre tutoriel sur la configuration d&#8217;un serveur SSH pour utiliser une connexion par clé publique/clé privée.

Fonctionnement
L&#8217;objectif d&#8217;une authentification par clés est de supprimer l&#8217;envoi de mots de passe par le réseau. Pour cela il [...]]]></description>
			<content:encoded><![CDATA[<p>En voyant l&#8217;intérêt que les visiteurs de mon blog porte à l&#8217;installation d&#8217;un serveur de mail multi-domaines, j&#8217;ai décidé d&#8217;écrire un autre tutoriel sur la configuration d&#8217;un serveur SSH pour utiliser une connexion par clé publique/clé privée.</p>
<p><span id="more-156"></span></p>
<p><strong>Fonctionnement</strong></p>
<p>L&#8217;objectif d&#8217;une authentification par clés est de supprimer l&#8217;envoi de mots de passe par le réseau. Pour cela il faut deux clés : une clé privée (seul l&#8217;utilisateur doit pouvoir y avoir accès) et une clé publique (doit être déployée sur toutes les machines où l&#8217;on souhaite se connecter).</p>
<p>La clé publique peut crypter les données et seule la clé privée peut les décrypter. Dans l&#8217;autre sens la clé privée <strong>signe</strong> les messages, la clé publique permet alors de s&#8217;assurer que le message vient bien du bon utilisateur. C&#8217;est le cryptage asymétrique.</p>
<p>Pour SSH, c&#8217;est exactement la même chose. Le serveur envoi un <em>challenge</em> au client : message crypté à partir de la clé publique. La connexion ne sera acceptée uniquement si le client répond correctement à ce message (c&#8217;est à dire qu&#8217;il a réussi à décrypter le message).</p>
<h3>Configuration du serveur SSH</h3>
<p>Par défaut le serveur SSH n&#8217;accepte pas les connections par clés mais uniquement par mot de passe. On va donc activer cette méthode d&#8217;authentification :</p>
<blockquote><p><span style="color: #333333;">Dans le fichier : <em>/etc/ssh/sshd_config</em></span></p>
<pre>RSAAuthentication    yes
PubkeyAuthentication yes
AuthorizedKeysFile   %h/.ssh/authorized_keys</pre>
</blockquote>
<p>Pour des questions de sécurité vous pouvez désactiver la connexion avec le login <strong>root</strong> :</p>
<blockquote>
<pre>PermitRootLogin no</pre>
</blockquote>
<p>Il suffit de redémarrer le serveur SSH : <em>/etc/init.d/ssh restart</em></p>
<p>Si vous souhaitez refuser l&#8217;authentification par mot de passe (pour éviter les attaques bruteforce et ainsi que les logs se remplissent pour rien) il faut positionner l&#8217;option suivante :</p>
<blockquote>
<pre>PasswordAuthentication no</pre>
</blockquote>
<h3>Création des clés</h3>
<p>Il y a deux manières pour créer les clés :</p>
<ol>
<li>Sur un poste Linux :
<ol>
<li>Lancer la commande suivante : <em>ssh-keygen -t rsa</em></li>
<li><em>Laisser les noms par défaut et entrer le mot de passe pour la clé privée.</em></li>
</ol>
</li>
<li>Sur un poste Windows :
<ol>
<li>Utiliser <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuttyGen</a> pour générer les clés.</li>
</ol>
</li>
</ol>
<p>Ensuite il faut copier la clé publique <em>id_rsa.pub</em> sur le serveur auquel on souhaite se connecter et conserver la clé privée sur le poste client.</p>
<p>Dans le répertoire de l&#8217;utilisateur on crée un répertoire <em>.ssh </em>(répertoire par défaut où le serveur SSH va chercher les clés publiques) et on renomme le fichier en <em>authorized_keys</em>.</p>
<p>Ensuite il faut <strong>absolument</strong> que ce fichier ai les droits suivants : <em>chmod 600 authorized_keys.</em></p>
<p>À partir de ce moment toutes les personnes ayant la clé privée et le mot de passe ayant servi à la générer peuvent se connecter au serveur.</p>
<h3>Première connexion</h3>
<p>Afin de se connecter avec <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">Putty</a> vous devez spécifier la clé privée : <em>Connection / SSH / Auth</em>.</p>
<p>Si vous avez créé votre paire de clés grâce à <em>ssh-keygen</em>, vous devez convertir votre clé privée au format Putty. Pour cela vous devez utiliser <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuttyGen</a> : menu <em>Conversions / Import key</em>, entrer alors le mot de passe de la clé, puis <strong>Save private key</strong>.</p>
<p>Lors de chaque connexion Putty vous demande le mot de passe de la clé, quel intérêt alors de se connecter en utilisant une paire de clé si on doit rentrer à chaque fois le mot de passe de la clé privée. C&#8217;est là qu&#8217;intervient <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">Pageant</a>, c&#8217;est un outils de la suite Putty qui permet de stocker pour une clé privée son mot de passe. L&#8217;utilisation de ce programme est extrêmement simple, je n&#8217;en parlerai donc pas ici. Pour Linux il suffit d&#8217;installer ssh-agent qui joue exactement le même rôle.<br />
<h3>Pour suivre votre lecture</h3>
<ul class="related_post">
<li><a href="http://www.mkhelif.fr/2008/06/23/apache2-systeme-de-blacklist.html" title="Apache2 : système de blacklist">Apache2 : système de blacklist</a></li>
<li><a href="http://www.mkhelif.fr/2008/05/23/serveur-de-mails-multi-domaines.html" title="Serveur de mails multi-domaines">Serveur de mails multi-domaines</a></li>
<li><a href="http://www.mkhelif.fr/2009/11/19/chrome-os-premire-prsentation.html" title="Chrome OS : premi&egrave;re pr&eacute;sentation">Chrome OS : premi&egrave;re pr&eacute;sentation</a></li>
<li><a href="http://www.mkhelif.fr/2009/09/07/ruby-on-rails-dployer-une-application-sur-tomcat-avec-jruby.html" title="Ruby on Rails : d&eacute;ployer une application sur Tomcat avec JRuby">Ruby on Rails : d&eacute;ployer une application sur Tomcat avec JRuby</a></li>
<li><a href="http://www.mkhelif.fr/2009/07/08/google-annonce-chrome-os.html" title="Google annonce Chrome OS">Google annonce Chrome OS</a></li>
<li><a href="http://www.mkhelif.fr/2008/07/30/oracle-faille-critique-dans-weblogic.html" title="Oracle : faille critique dans WebLogic [corrigé]">Oracle : faille critique dans WebLogic [corrigé]</a></li>
<li><a href="http://www.mkhelif.fr/2008/06/18/passerelle-entre-apache-et-tomcat.html" title="Passerelle entre Apache et Tomcat">Passerelle entre Apache et Tomcat</a></li>
</ul>
       ]]></content:encoded>
			<wfw:commentRss>http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chiffre de César</title>
		<link>http://www.mkhelif.fr/2008/01/17/chiffre-de-cesar.html</link>
		<comments>http://www.mkhelif.fr/2008/01/17/chiffre-de-cesar.html#comments</comments>
		<pubDate>Thu, 17 Jan 2008 15:05:44 +0000</pubDate>
		<dc:creator>mkhelif</dc:creator>
				<category><![CDATA[Cryptographie]]></category>
		<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://wiki.mkhelif.fr/beta/2008/01/17/chiffre-de-cesar.html</guid>
		<description><![CDATA[Le chiffre de César consiste simplement à décaler les lettres de l&#8217;alphabet de quelques crans vers la droite ou la gauche.Le chiffre de César (on parle aussi d&#8217;alphabet décalé) est un cas particulier d&#8217;alphabet désordonné.
Par exemple si nous décidons que le décalage est de 5 vers la droite, nous aurons pourrons chiffrer un message avec [...]]]></description>
			<content:encoded><![CDATA[<p>Le chiffre de César consiste simplement à décaler les lettres de l&#8217;alphabet de quelques crans vers la droite ou la gauche.Le chiffre de César (on parle aussi d&#8217;alphabet décalé) est un cas particulier d&#8217;alphabet désordonné.</p>
<p><span id="more-34"></span>Par exemple si nous décidons que le décalage est de <strong>5</strong> vers la droite, nous aurons pourrons chiffrer un message avec un nouvel alphabet :</p>
<table class="inline" style="border: 1px solid #444444; height: 32px;" border="0" width="477">
<tbody>
<tr>
<th class="centeralign">Alphabet</th>
<td class="centeralign">a</td>
<th class="centeralign">b</th>
<td class="centeralign">c</td>
<th class="centeralign">d</th>
<td class="centeralign">e</td>
<th class="centeralign">f</th>
<td class="centeralign">g</td>
<th class="centeralign">h</th>
<td class="centeralign">i</td>
<th class="centeralign">j</th>
<td class="centeralign">k</td>
<th class="centeralign">l</th>
<td class="centeralign">m</td>
<th class="centeralign">n</th>
<td class="centeralign">o</td>
<th class="centeralign">p</th>
<td class="centeralign">q</td>
<th class="centeralign">r</th>
<td class="centeralign">s</td>
<th class="centeralign">t</th>
<td class="centeralign">u</td>
<th class="centeralign">v</th>
<td class="centeralign">w</td>
<th class="centeralign">x</th>
<td class="centeralign">y</td>
<th class="centeralign">z</th>
</tr>
<tr>
<th class="centeralign">Chiffré</th>
<td class="centeralign">f</td>
<th class="centeralign">g</th>
<td class="centeralign">h</td>
<th class="centeralign">i</th>
<td class="centeralign">j</td>
<th class="centeralign">k</th>
<td class="centeralign">l</td>
<th class="centeralign">m</th>
<td class="centeralign">n</td>
<th class="centeralign">o</th>
<td class="centeralign">p</td>
<th class="centeralign">q</th>
<td class="centeralign">r</td>
<th class="centeralign">s</th>
<td class="centeralign">t</td>
<th class="centeralign">u</th>
<td class="centeralign">v</td>
<th class="centeralign">w</th>
<td class="centeralign">x</td>
<th class="centeralign">y</th>
<td class="centeralign">z</td>
<th class="centeralign">a</th>
<td class="centeralign">b</td>
<th class="centeralign">c</th>
<td class="centeralign">d</td>
<th class="centeralign">e</th>
</tr>
</tbody>
</table>
<p>On peut donc chiffrer un texte :</p>
<pre class="code">  Le mot  : chiffre de cesar
  Devient : hmnkkwj ij hjxfw</pre>
<p>Le problème de cette méthode vient du fait que lorsque l&#8217;on chiffre un texte assez important, il est assez facile de revenir au texte clair sans avoir le <span class="curid"><span class="wikilink1">chiffre de César</span></span>.<br />
En effet toutes les lettres de l&#8217;alphabet ont une fréquence d&#8217;apparition. On peut donc analyser le texte est retrouver les lettres d&#8217;origines.</p>
<p>Image <a class="urlextern" title="http://fr.wikipedia.org/wiki/Fr%C3%A9quence_d'apparition_des_lettres_en_fran%C3%A7ais" rel="nofollow" href="http://fr.wikipedia.org/wiki/Fr%C3%A9quence_d%27apparition_des_lettres_en_fran%C3%A7ais">Wikipedia</a> de la répartition des lettres en français.</p>
<p style="text-align: center;"><a href="http://www.mkhelif.fr/wp-content/uploads/2008/06/frequence-lettres.png"><img class="size-full wp-image-63" title="Fréquence des lettres" src="http://www.mkhelif.fr/wp-content/uploads/2008/06/frequence-lettres.png" alt="Fréquence des lettres en Français" width="500" height="194" /></a></p>
<h3>Pour suivre votre lecture</h3>
<ul class="related_post">
<li><a href="http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html" title="Authentification SSH par clé privée/clé publique">Authentification SSH par clé privée/clé publique</a></li>
<li><a href="http://www.mkhelif.fr/2008/07/30/oracle-faille-critique-dans-weblogic.html" title="Oracle : faille critique dans WebLogic [corrigé]">Oracle : faille critique dans WebLogic [corrigé]</a></li>
<li><a href="http://www.mkhelif.fr/2008/06/23/apache2-systeme-de-blacklist.html" title="Apache2 : système de blacklist">Apache2 : système de blacklist</a></li>
<li><a href="http://www.mkhelif.fr/2008/05/23/serveur-de-mails-multi-domaines.html" title="Serveur de mails multi-domaines">Serveur de mails multi-domaines</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html" title="Chiffre de Vigénère">Chiffre de Vigénère</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/16/chiffre-de-beaufort.html" title="Chiffre de Beaufort">Chiffre de Beaufort</a></li>
</ul>
       ]]></content:encoded>
			<wfw:commentRss>http://www.mkhelif.fr/2008/01/17/chiffre-de-cesar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chiffre de Vigénère</title>
		<link>http://www.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html</link>
		<comments>http://www.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html#comments</comments>
		<pubDate>Thu, 17 Jan 2008 15:04:51 +0000</pubDate>
		<dc:creator>mkhelif</dc:creator>
				<category><![CDATA[Cryptographie]]></category>
		<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://wiki.mkhelif.fr/beta/2008/01/17/chiffre-de-vigenere.html</guid>
		<description><![CDATA[Le chiffre de Vigenère est une amélioration décisive du chiffre de César. Sa force réside dans l&#8217;utilisation non pas d&#8217;un, mais de 26 alphabets décalés pour chiffrer un message.

On peut résumer ces décalages avec un carré de Vigenère. Ce chiffre utilise une clef qui définit le décalage pour chaque lettre du message (A: décalage de [...]]]></description>
			<content:encoded><![CDATA[<p>Le chiffre de Vigenère est une amélioration décisive du <a href="http://wiki.mkhelif.fr/2008/01/17/chiffre-de-cesar.html">chiffre de César</a>. Sa force réside dans l&#8217;utilisation non pas d&#8217;un, mais de 26 alphabets décalés pour chiffrer un message.</p>
<p><span id="more-33"></span></p>
<p>On peut résumer ces décalages avec un carré de Vigenère. Ce chiffre utilise une clef qui définit le décalage pour chaque lettre du message (A: décalage de 0, B: 1, C: 2, …, Z: 25).</p>
<p>Voici un exemple simple :</p>
<pre class="code">Texte en clair     : chiffre de vigenere
Clé de chiffrement : secret</pre>
<p>On construit alors la table suivante :</p>
<table class="inline" style="border: 1px solid #444444; height: 49px; text-align: center;" border="0" width="421">
<tbody>
<tr>
<th class="centeralign">Clair</th>
<td class="centeralign">c</td>
<th class="centeralign">h</th>
<td class="centeralign">i</td>
<th class="centeralign">f</th>
<td class="centeralign">f</td>
<th class="centeralign">r</th>
<td class="centeralign">e</td>
<th class="rightalign"></th>
<td class="centeralign">d</td>
<th class="centeralign">e</th>
<td class="rightalign"></td>
<th class="centeralign">v</th>
<td class="centeralign">i</td>
<th class="centeralign">g</th>
<td class="centeralign">e</td>
<th class="centeralign">n</th>
<td class="centeralign">e</td>
<th class="centeralign">r</th>
<td class="centeralign">e</td>
</tr>
<tr>
<th class="centeralign">Clé</th>
<td class="centeralign">s</td>
<th class="centeralign">e</th>
<td class="centeralign">c</td>
<th class="centeralign">r</th>
<td class="centeralign">e</td>
<th class="centeralign">t</th>
<td class="centeralign">s</td>
<th class="rightalign"></th>
<td class="centeralign">e</td>
<th class="centeralign">c</th>
<td class="rightalign"></td>
<th class="centeralign">r</th>
<td class="centeralign">e</td>
<th class="centeralign">t</th>
<td class="centeralign">s</td>
<th class="centeralign">e</th>
<td class="centeralign">c</td>
<th class="centeralign">r</th>
<td class="centeralign">e</td>
</tr>
<tr>
<th class="centeralign">Décalage</th>
<td class="centeralign">17</td>
<th class="centeralign">4</th>
<td class="centeralign">2</td>
<th class="centeralign">17</th>
<td class="centeralign">4</td>
<th class="centeralign">19</th>
<td class="centeralign">17</td>
<th class="rightalign"></th>
<td class="centeralign">17</td>
<th class="centeralign">4</th>
<td class="rightalign"></td>
<th class="centeralign">2</th>
<td class="centeralign">17</td>
<th class="centeralign">4</th>
<td class="centeralign">19</td>
<th class="centeralign">17</th>
<td class="centeralign">17</td>
<th class="centeralign">4</th>
<td class="centeralign">2</td>
</tr>
<tr>
<th class="centeralign">Chiffré</th>
<td class="centeralign">u</td>
<th class="centeralign">l</th>
<td class="centeralign">k</td>
<th class="centeralign">w</th>
<td class="centeralign">j</td>
<th class="centeralign">k</th>
<td class="centeralign">w</td>
<th class="rightalign"></th>
<td class="centeralign">h</td>
<th class="centeralign">g</th>
<td class="rightalign"></td>
<th class="centeralign">m</th>
<td class="centeralign">m</td>
<th class="centeralign">z</th>
<td class="centeralign">w</td>
<th class="centeralign">r</th>
<td class="centeralign">g</td>
<th class="centeralign">i</th>
<td class="centeralign">i</td>
</tr>
</tbody>
</table>
<p>L&#8217;intérêt de cette méthode par rapport au <a href="http://wiki.mkhelif.fr/2008/01/17/chiffre-de-cesar.html">chiffre de César</a> est que chaque lettre peut être chiffré de façons différentes. Si on calcule les fréquences des lettres d&#8217;une fable de la Fontaine on obtient des résultats marquants :</p>
<p>Texte clair :</p>
<p><a href="http://www.mkhelif.fr/wp-content/uploads/2008/06/vigenere-clair.png"><img class="alignnone size-medium wp-image-60" title="Texte clair" src="http://www.mkhelif.fr/wp-content/uploads/2008/06/vigenere-clair-300x184.png" alt="" width="300" height="184" /></a></p>
<p>Texte chiffré :</p>
<p><a href="http://www.mkhelif.fr/wp-content/uploads/2008/06/vigenere-chiffre.png"><img class="alignnone size-medium wp-image-59" title="Texte chiffré" src="http://www.mkhelif.fr/wp-content/uploads/2008/06/vigenere-chiffre-300x185.png" alt="" width="300" height="185" /></a></p>
<p>Source des images : <a class="urlextern" title="http://www.apprendre-en-ligne.net/crypto/vigenere/index.html" rel="nofollow" href="http://www.apprendre-en-ligne.net/crypto/vigenere/index.html">Ars Cryptographica</a></p>
<h3>Pour suivre votre lecture</h3>
<ul class="related_post">
<li><a href="http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html" title="Authentification SSH par clé privée/clé publique">Authentification SSH par clé privée/clé publique</a></li>
<li><a href="http://www.mkhelif.fr/2008/07/30/oracle-faille-critique-dans-weblogic.html" title="Oracle : faille critique dans WebLogic [corrigé]">Oracle : faille critique dans WebLogic [corrigé]</a></li>
<li><a href="http://www.mkhelif.fr/2008/06/23/apache2-systeme-de-blacklist.html" title="Apache2 : système de blacklist">Apache2 : système de blacklist</a></li>
<li><a href="http://www.mkhelif.fr/2008/05/23/serveur-de-mails-multi-domaines.html" title="Serveur de mails multi-domaines">Serveur de mails multi-domaines</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/17/chiffre-de-cesar.html" title="Chiffre de César">Chiffre de César</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/16/chiffre-de-beaufort.html" title="Chiffre de Beaufort">Chiffre de Beaufort</a></li>
</ul>
       ]]></content:encoded>
			<wfw:commentRss>http://www.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chiffre de Beaufort</title>
		<link>http://www.mkhelif.fr/2008/01/16/chiffre-de-beaufort.html</link>
		<comments>http://www.mkhelif.fr/2008/01/16/chiffre-de-beaufort.html#comments</comments>
		<pubDate>Wed, 16 Jan 2008 15:07:51 +0000</pubDate>
		<dc:creator>mkhelif</dc:creator>
				<category><![CDATA[Cryptographie]]></category>
		<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://wiki.mkhelif.fr/beta/2008/01/16/chiffre-de-beaufort.html</guid>
		<description><![CDATA[Le chiffre de Beaufort est une variante du chiffre de Vigenère. Il utilise le carré de Vigenère d&#8217;une autre manière. Au lieu d&#8217;additionner la clef au message clair, Beaufort soustrait le message clair de la clef.
Pour suivre votre lecture

Authentification SSH par clé privée/clé publique
Oracle : faille critique dans WebLogic [corrigé]
Apache2 : système de blacklist
Serveur de [...]]]></description>
			<content:encoded><![CDATA[<p>Le chiffre de Beaufort est une variante du <a href="http://wiki.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html">chiffre de Vigenère</a>. Il utilise le carré de <a href="http://wiki.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html">Vigenère</a> d&#8217;une autre manière. Au lieu d&#8217;additionner la clef au message clair, Beaufort soustrait le message clair de la clef.</p>
<h3>Pour suivre votre lecture</h3>
<ul class="related_post">
<li><a href="http://www.mkhelif.fr/2008/11/24/authentification-ssh-par-cl-privecl-publique.html" title="Authentification SSH par clé privée/clé publique">Authentification SSH par clé privée/clé publique</a></li>
<li><a href="http://www.mkhelif.fr/2008/07/30/oracle-faille-critique-dans-weblogic.html" title="Oracle : faille critique dans WebLogic [corrigé]">Oracle : faille critique dans WebLogic [corrigé]</a></li>
<li><a href="http://www.mkhelif.fr/2008/06/23/apache2-systeme-de-blacklist.html" title="Apache2 : système de blacklist">Apache2 : système de blacklist</a></li>
<li><a href="http://www.mkhelif.fr/2008/05/23/serveur-de-mails-multi-domaines.html" title="Serveur de mails multi-domaines">Serveur de mails multi-domaines</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/17/chiffre-de-cesar.html" title="Chiffre de César">Chiffre de César</a></li>
<li><a href="http://www.mkhelif.fr/2008/01/17/chiffre-de-vigenere.html" title="Chiffre de Vigénère">Chiffre de Vigénère</a></li>
</ul>
       ]]></content:encoded>
			<wfw:commentRss>http://www.mkhelif.fr/2008/01/16/chiffre-de-beaufort.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
