Skip Menu |

This queue is for tickets about the Socket-Class CPAN distribution.

Report information
The Basics
Id: 48028
Status: resolved
Priority: 0/
Queue: Socket-Class

People
Owner: post-christian [...] freenet.de
Requestors: dmuey [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 2.21
Fixed in: (no value)



Subject: ability to set the cipher being used in Socket::Class::SSL object
Currently it appears you can only see the cipher info (i.e. get_cipher_name() get_cipher_version()) but there is not way to say which cipher you'd like to use. It'd be great if there was a mechanism for that, thanks!
On Mo. 20. Jul. 2009, 15:00:06, DMUEY wrote: Show quoted text
> Currently it appears you can only see the cipher info (i.e. > get_cipher_name() get_cipher_version()) but there is not way to say > which cipher you'd like to use. > > It'd be great if there was a mechanism for that, thanks! >
i added a function set_cipher_list() in version 2.22. please get back to me if it works as expected.
Subject: Re: [rt.cpan.org #48028] ability to set the cipher being used in Socket::Class::SSL object
Date: Mon, 20 Jul 2009 16:56:58 -0500
To: bug-Socket-Class [...] rt.cpan.org
From: Dan Muey <webmaster [...] simplemood.com>
On Jul 20, 2009, at 4:37 PM, Christian Mueller via RT wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=48028 > > > On Mo. 20. Jul. 2009, 15:00:06, DMUEY wrote:
>> Currently it appears you can only see the cipher info (i.e. >> get_cipher_name() get_cipher_version()) but there is not way to say >> which cipher you'd like to use. >> >> It'd be great if there was a mechanism for that, thanks! >>
> > i added a function set_cipher_list() in version 2.22. > please get back to me if it works as expected.
Excellent, will do!
From: nick [...] cpanel.net
On Mon Jul 20 15:00:06 2009, DMUEY wrote: Show quoted text
> Currently it appears you can only see the cipher info (i.e. > get_cipher_name() get_cipher_version()) but there is not way to say > which cipher you'd like to use. > > It'd be great if there was a mechanism for that, thanks! >
[root@nick]# openssl s_client -connect localhost:443 -cipher LOW CONNECTED(00000003) 12539:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:s23_clnt.c:455: [root@nick]# openssl s_client -connect localhost:443 -cipher HIGH CONNECTED(00000003) depth=0 /C=US/ST=Unknown/L=Unknown/O=Unknown/OU=Unknown/... Looks good!
Subject: Re: [rt.cpan.org #48028] ability to set the cipher being used in Socket::Class::SSL object
Date: Thu, 23 Jul 2009 06:42:37 +0200 (CEST)
To: bug-Socket-Class [...] rt.cpan.org
From: "Christian Mueller" <christian [...] hbr1.com>
Show quoted text
> Queue: Socket-Class > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=48028 > > > On Mon Jul 20 15:00:06 2009, DMUEY wrote:
>> Currently it appears you can only see the cipher info (i.e. >> get_cipher_name() get_cipher_version()) but there is not way to say >> which cipher you'd like to use. >> >> It'd be great if there was a mechanism for that, thanks! >>
> > > [root@nick]# openssl s_client -connect localhost:443 -cipher LOW > CONNECTED(00000003) > 12539:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert > handshake > failure:s23_clnt.c:455: > [root@nick]# openssl s_client -connect localhost:443 -cipher HIGH > CONNECTED(00000003) > depth=0 /C=US/ST=Unknown/L=Unknown/O=Unknown/OU=Unknown/... > > > Looks good! >
great :)