Hi,<div><br></div><div>I&#39;ve tried to use https in Pharo. I&#39;ve loaded SSL package from Cryptography.</div><div><br></div><div>(HttpsUrl absoluteFromText: &#39;<a href="https://www.google.com">https://www.google.com</a>&#39;)  raises MNU.</div>

<div><br></div><div>I&#39;ve fixet it by changing:</div><div><br></div><div>SSLCipherSuite class&gt;&gt;supportedSuites</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&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; &#39;0018&#39; &#39;001A&#39; &#39;001B&#39;).&quot;</div>

<div><br></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>| hexCodeStrings |</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>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; &#39;0018&#39; &#39;001A&#39; &#39;001B&#39;).</div>

<div><span class="Apple-tab-span" style="white-space:pre">        </span>^ (hexCodeStrings collect: [:e | self cipherSuiteAtHexString: e]) reject: [:aSuite| aSuite isNil]. </div><div><br></div><div><br></div><div>(rejecting nil suites).</div>

<div><br></div><div>I don&#39;t know the impact.</div><div><br></div><div>Cheers,</div><div><br clear="all">Laurent Laffont - <a href="http://twitter.com/#!/lolgzs" target="_blank">@lolgzs</a><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>
</div>