<?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>Fabien Agranier &#187; C# .Net</title>
	<atom:link href="http://fabien.agranier.com/category/c-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://fabien.agranier.com</link>
	<description>Coding, security, tips &#38; tricks</description>
	<lastBuildDate>Mon, 07 Sep 2009 09:53:41 +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>Cryptage en mémoire</title>
		<link>http://fabien.agranier.com/2008/01/20/cryptage-en-memoire/</link>
		<comments>http://fabien.agranier.com/2008/01/20/cryptage-en-memoire/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 18:39:42 +0000</pubDate>
		<dc:creator>Fabien Agranier</dc:creator>
				<category><![CDATA[C# .Net]]></category>

		<guid isPermaLink="false">http://fabien.agranier.com/2008/01/20/cryptage-en-memoire/</guid>
		<description><![CDATA[[Draft article]
Il est possible de crypter les chaînes de caractères en mémoire via l&#8217;utilisation de la class System.Security.SecureString
Inclure les namespaces
using System.Runtime.InteropServices;
using System.Security.SecureString;
Créer une sécure string à partir d&#8217;une chaine :
SecureString scstr = new SecureString();
foreach(Char c in txt_pass.Text) scstr.AppendChar(c);
Récupérer le contenu de la chaine sécurisée dans une zone mémoire non managée (cela permettra de pouvoir supprimer [...]]]></description>
		<wfw:commentRss>http://fabien.agranier.com/2008/01/20/cryptage-en-memoire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
