<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: X509Certificate code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Thu, 21 Aug 2008 15:48:57 GMT</pubDate>
    <description>DZone Snippets: X509Certificate code</description>
    <item>
      <title>Simplest digital signing</title>
      <link>http://snippets.dzone.com/posts/show/3898</link>
      <description>&lt;code&gt;&lt;br /&gt;            X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);&lt;br /&gt;            store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);&lt;br /&gt;            X509Certificate2Collection certs =&lt;br /&gt;                X509Certificate2UI.SelectFromCollection(store.Certificates,&lt;br /&gt;                    "Certificates", "Please select certificate to use", X509SelectionFlag.SingleSelection);&lt;br /&gt;&lt;br /&gt;            CmsSigner cms = new CmsSigner(certs[0]);&lt;br /&gt;            SignedCms sig = new SignedCms(new ContentInfo(new byte[10]));&lt;br /&gt;&lt;br /&gt;            sig.ComputeSignature(cms, false); &lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Tue, 24 Apr 2007 22:49:18 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3898</guid>
      <author>mstampar (Miroslav Stampar)</author>
    </item>
    <item>
      <title>Access list of digital certificates through builtin UI:</title>
      <link>http://snippets.dzone.com/posts/show/3888</link>
      <description>&lt;code&gt;&lt;br /&gt;             X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);&lt;br /&gt;            store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);&lt;br /&gt;            X509Certificate2Collection certs =&lt;br /&gt;                X509Certificate2UI.SelectFromCollection(store.Certificates,&lt;br /&gt;                    "Certificates", "Please select certificate to use", X509SelectionFlag.SingleSelection); &lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Tue, 24 Apr 2007 22:40:23 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3888</guid>
      <author>mstampar (Miroslav Stampar)</author>
    </item>
  </channel>
</rss>
