<br><div class="gmail_quote">On Fri, Mar 4, 2011 at 5:55 PM, Levente Uzonyi <span dir="ltr">&lt;<a href="mailto:leves@elte.hu">leves@elte.hu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On Thu, 3 Mar 2011, laurent laffont wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
I&#39;ve tried to use https in Pharo. I&#39;ve loaded SSL package from Cryptography.<br>
<br>
(HttpsUrl absoluteFromText: &#39;<a href="https://www.google.com" target="_blank">https://www.google.com</a>&#39;)  raises MNU.<br>
<br>
I&#39;ve fixet it by changing:<br>
<br>
SSLCipherSuite class&gt;&gt;supportedSuites<br>
<br>
&quot;hexCodeStrings := #(&#39;000A&#39; &#39;0009&#39; &#39;0004&#39; &#39;0005&#39; &#39;0012&#39; &#39;0013&#39; &#39;0015&#39; &#39;0016&#39;<br>
&#39;0018&#39; &#39;001A&#39; &#39;001B&#39;).&quot;<br>
<br>
| hexCodeStrings |<br>
hexCodeStrings := #(&#39;000A&#39; &#39;0009&#39; &#39;0012&#39; &#39;0013&#39; &#39;0015&#39; &#39;0016&#39; &#39;0004&#39; &#39;0005&#39;<br>
&#39;0018&#39; &#39;001A&#39; &#39;001B&#39;).<br>
^ (hexCodeStrings collect: [:e | self cipherSuiteAtHexString: e]) reject:<br>
[:aSuite| aSuite isNil].<br>
<br>
<br>
(rejecting nil suites).<br>
<br>
I don&#39;t know the impact.<br>
</blockquote>
<br></div>
SSL it built on top of the Cryptography package. Since Pharo has some parts of the Cryptography package already loaded, thing probably won&#39;t work as they should. The last time I checked, this SSL implementation was incomplete, so I&#39;d suggest you to use SqueakSSL instead.<br>

</blockquote><div><br></div><div><br></div><div>I&#39;ve tried SqueakSSL but it seems it needs a plugin which is not shipped with Cog nor Pharo One-Click VM. Am I right ? </div><div><br></div><div>Laurent.</div><div><br>
</div>
<div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
<br>
Levente<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Cheers,<br>
<br>
Laurent Laffont - @lolgzs &lt;<a href="http://twitter.com/#!/lolgzs" target="_blank">http://twitter.com/#!/lolgzs</a>&gt;<div class="im"><br>
<br>
Pharo Smalltalk Screencasts: <a href="http://www.pharocasts.com/" target="_blank">http://www.pharocasts.com/</a><br>
Blog: <a href="http://magaloma.blogspot.com/" target="_blank">http://magaloma.blogspot.com/</a><br>
<br>
</div></blockquote>
_______________________________________________<br>
Cryptography mailing list<br>
<a href="mailto:Cryptography@lists.squeakfoundation.org" target="_blank">Cryptography@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/cryptography" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/cryptography</a><br>
</blockquote></div><br>