<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Symmetric Encryption/Decryption Pipeline Components</title>
	<atom:link href="http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/feed" rel="self" type="application/rss+xml" />
	<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents</link>
	<description>by dæmons be driven</description>
	<lastBuildDate>Tue, 16 Mar 2010 06:33:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tomas Restrepo</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-714</link>
		<dc:creator>Tomas Restrepo</dc:creator>
		<pubDate>Wed, 13 Jun 2007 04:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-714</guid>
		<description>Just use the Winforms utility included in the zip... it can create the SSO application to store the keys, generate and save the keys, and then just specify the name of the SSO application in the pipeline component configuration.
</description>
		<content:encoded><![CDATA[<p>Just use the Winforms utility included in the zip&#8230; it can create the SSO application to store the keys, generate and save the keys, and then just specify the name of the SSO application in the pipeline component configuration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikunj</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-713</link>
		<dc:creator>nikunj</dc:creator>
		<pubDate>Tue, 12 Jun 2007 20:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-713</guid>
		<description>i wants to use this encryption with sso so , can u explain me procedure in brief........
</description>
		<content:encoded><![CDATA[<p>i wants to use this encryption with sso so , can u explain me procedure in brief&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas Restrepo</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-712</link>
		<dc:creator>Tomas Restrepo</dc:creator>
		<pubDate>Thu, 25 Jan 2007 13:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-712</guid>
		<description>Glenn,
If you want to allow the user to enter any text as the password, just modify the config tool to use Encoding.ASCII.GetBytes() on the text or something like that.
</description>
		<content:encoded><![CDATA[<p>Glenn,<br />
If you want to allow the user to enter any text as the password, just modify the config tool to use Encoding.ASCII.GetBytes() on the text or something like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-711</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Thu, 25 Jan 2007 10:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-711</guid>
		<description>How do you get around the issue of having an ascii key?  Can I convert the ascii key that I have?  Or can I comment out the hexadecimal check?
</description>
		<content:encoded><![CDATA[<p>How do you get around the issue of having an ascii key?  Can I convert the ascii key that I have?  Or can I comment out the hexadecimal check?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas Restrepo</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-710</link>
		<dc:creator>Tomas Restrepo</dc:creator>
		<pubDate>Sun, 19 Nov 2006 17:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-710</guid>
		<description>The code above and my own code don&#039;t represent the keys in the same format. My utility presents keys as a set of bytes presented in hexadecimal format; the utilities presented in the link you mention expect the keys to be simple strings that they then convert to bytes directly using an encoding (i.e. based on the ASCII codes of the characters in the string). Two completely different things. You need to handle them the same.
</description>
		<content:encoded><![CDATA[<p>The code above and my own code don&#8217;t represent the keys in the same format. My utility presents keys as a set of bytes presented in hexadecimal format; the utilities presented in the link you mention expect the keys to be simple strings that they then convert to bytes directly using an encoding (i.e. based on the ASCII codes of the characters in the string). Two completely different things. You need to handle them the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sajid Hussain</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-709</link>
		<dc:creator>Sajid Hussain</dc:creator>
		<pubDate>Sat, 18 Nov 2006 01:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-709</guid>
		<description>Tomas,
Thanks for the reply,
I am trying the code given at http://support.microsoft.com/kb/307010
to Decrypt the messages encrypted using your components, using the DES algorithm. But it just doesn&#039;t work, although both are using the same algo.
1. The key that is generated by your utility is not accepted by this program, it says its size is not valid.
2. When I generate a key using that program, and try to make a SSO app using your utility with that key, your utility says its invalid.
So they dont seem to be using the same type of key. Can you please have a look at that code, and tell me how can I decrypt messages encrypted by your component using it Or give me some code which I can use in an application, to decrypt/encrypt messages encrypted/decrypted by your component.
</description>
		<content:encoded><![CDATA[<p>Tomas,<br />
Thanks for the reply,<br />
I am trying the code given at <a href="http://support.microsoft.com/kb/307010" rel="nofollow">http://support.microsoft.com/kb/307010</a><br />
to Decrypt the messages encrypted using your components, using the DES algorithm. But it just doesn&#8217;t work, although both are using the same algo.<br />
1. The key that is generated by your utility is not accepted by this program, it says its size is not valid.<br />
2. When I generate a key using that program, and try to make a SSO app using your utility with that key, your utility says its invalid.<br />
So they dont seem to be using the same type of key. Can you please have a look at that code, and tell me how can I decrypt messages encrypted by your component using it Or give me some code which I can use in an application, to decrypt/encrypt messages encrypted/decrypted by your component.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas Restrepo</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-708</link>
		<dc:creator>Tomas Restrepo</dc:creator>
		<pubDate>Thu, 16 Nov 2006 13:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-708</guid>
		<description>Number 1 sounds like a permissions issue, maybe.  Number 2 is strange, definitely haven&#039;t seen those myself. It might be something in the name you&#039;re using, perhaps? What name are you giving to your SSO application?
As to number 5, what you&#039;d need is for the other application to decrypt the message using the same algorithm you encrypted it with, and the same set of keys. It is not necessary to actually use the same DLL;  as long as you&#039;re choosing the right options you can do it using the standard .NET crypto classes (which are what my pipeline components use underneath, anyway).
</description>
		<content:encoded><![CDATA[<p>Number 1 sounds like a permissions issue, maybe.  Number 2 is strange, definitely haven&#8217;t seen those myself. It might be something in the name you&#8217;re using, perhaps? What name are you giving to your SSO application?<br />
As to number 5, what you&#8217;d need is for the other application to decrypt the message using the same algorithm you encrypted it with, and the same set of keys. It is not necessary to actually use the same DLL;  as long as you&#8217;re choosing the right options you can do it using the standard .NET crypto classes (which are what my pipeline components use underneath, anyway).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sajid Hussain</title>
		<link>http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents/comment-page-1#comment-707</link>
		<dc:creator>Sajid Hussain</dc:creator>
		<pubDate>Thu, 16 Nov 2006 05:34:30 +0000</pubDate>
		<guid isPermaLink="false">http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents#comment-707</guid>
		<description>Toms,
I am a newbie to biztalk, I tried your encryption/decryption component with some success today, thanx for putting it for us. But I&#039;ve few confusions where I got stuck using it.
1. When I make a SSO Configuration Application after running your application, it is made successfully, but when I try to open it, it breaks giving this error:
&quot;The mapping does not exist. For Config Store applications, the config info has not been set&quot;.
2. What I did then was, Generated the keys, and then tried to save it, which gave me this error:
&quot;The parameter is incorrect&quot; at store.SetConfigInfo() method.
I worked around this, by hard coding the appName argument in the method to the config application I just made using the same form. It worked!
3. I then provided that applications name, in the send pipeline components SSOConfigAppName and deployed it.
4. It worked and it encrypted the outgoing message.
5. Now how do I decrypt that message to use it any application, would I need to use the same dll, that I used in Biztalk for that? and what about the errors I got mentioned in point 2 and 3, how can I get rid of them?
I&#039;d be very grateful to you, if you take bit of your time out and answer my queries.
Thanks and Regards,
Sajid.
</description>
		<content:encoded><![CDATA[<p>Toms,<br />
I am a newbie to biztalk, I tried your encryption/decryption component with some success today, thanx for putting it for us. But I&#8217;ve few confusions where I got stuck using it.<br />
1. When I make a SSO Configuration Application after running your application, it is made successfully, but when I try to open it, it breaks giving this error:<br />
&quot;The mapping does not exist. For Config Store applications, the config info has not been set&quot;.<br />
2. What I did then was, Generated the keys, and then tried to save it, which gave me this error:<br />
&quot;The parameter is incorrect&quot; at store.SetConfigInfo() method.<br />
I worked around this, by hard coding the appName argument in the method to the config application I just made using the same form. It worked!<br />
3. I then provided that applications name, in the send pipeline components SSOConfigAppName and deployed it.<br />
4. It worked and it encrypted the outgoing message.<br />
5. Now how do I decrypt that message to use it any application, would I need to use the same dll, that I used in Biztalk for that? and what about the errors I got mentioned in point 2 and 3, how can I get rid of them?<br />
I&#8217;d be very grateful to you, if you take bit of your time out and answer my queries.<br />
Thanks and Regards,<br />
Sajid.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
