<div dir="ltr">Thanks Marcus.<div> It worked when changed + to :.<div>  I am wondering is this newly introduced?. </div><div>  Application compiled with openssl-0.9.8d used to work when Cipher string has '+'.or ':'</div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 26 March 2015 at 15:23, Marcus Meissner <span dir="ltr"><<a href="mailto:meissner@suse.de" target="_blank">meissner@suse.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Thu, Mar 26, 2015 at 10:42:21AM +0530, Mukesh Yadav wrote:<br>
> HI,<br>
><br>
> I have a query for SSl cipher on Openssl-1.0.1h<br>
> Have an application which is using library compiled with openssl-1.0.1h.<br>
><br>
> Application is failing in func SSL_CTX_set_cipher_list() when input is "<br>
> RC4-MD5+RC4-SHA" and it gets succeed when input is "RC4-SHA".<br>
> Not sure whether "RC4-MD5" is disabled by default on openssl-1.0.1h.<br>
> Earlier application was using openssl-0.9.8d.<br>
> There it used to work fine..<br>
> If that is the case, is there a way to enable RC4-MD5 on openssl-1.0.1h.<br>
><br>
> Tried looking opensource link, couldn't find a way to explicitly enable<br>
> this algorithm or even if it is diabled by default.<br>
> Any Inputs for same will be appreciated..<br>
<br>
</div></div>You seem to be using invalid cipher string syntax.<br>
<br>
: is a delimiter there.<br>
<br>
openssl ciphers RC4-MD5:RC4-SHA  -v<br>
RC4-MD5                 SSLv3 Kx=RSA      Au=RSA  Enc=RC4(128)  Mac=MD5<br>
RC4-SHA                 SSLv3 Kx=RSA      Au=RSA  Enc=RC4(128)  Mac=SHA1<br>
<br>
<br>
<br>
Ciao, Marcus<br>
_______________________________________________<br>
openssl-users mailing list<br>
To unsubscribe: <a href="https://mta.openssl.org/mailman/listinfo/openssl-users" target="_blank">https://mta.openssl.org/mailman/listinfo/openssl-users</a><br>
</blockquote></div><br></div>