Thanks Ram,

Another question too,

After exchanging the client and server hello , On what basis is the common
cipher agreed upon?

-mithun



On Sat, Nov 5, 2011 at 9:26 AM, <ramaswamy...@globaledgesoft.com> wrote:

> By default it will send all the ciphersuites it is supporting , but you
> can always control the cipher suites you want negotiate by using something
> like below ...
> here  it will set only Non_anonymous and RSA type ciphersuites
> if (!SSL_CTX_set_cipher_list(*ctx,
> "RSA:!ADH:!NULL:!aNULL!RC4:!RC5:!EXPORT")) {
> printf ("Setting Ciphersuite List Failed\n");
>                        return -1;
> }
>
> Refer list cipher suites supported in openssl help...
>
> Regards ,
> Ram
>
>
>
> > Thanks Ram,
> >
> > i have another question,
> >
> > When the client sends "client hello" will it specify all the cipher
> suites
> > it supports or are there any other parameters that can be configured at
> > the
> > client so that it sends selective list of cipher suites?
> >
> > -Thanks
> >  mithun
> >
> >
> >
> > On Sat, Nov 5, 2011 at 8:59 AM, <ramaswamy...@globaledgesoft.com> wrote:
> >
> >> You can check the supported cipher suites by looking in to client hello
> >> messsage.
> >>
> >> Regards,
> >> Ram
> >>
> >>
> >> > Hello Forum,
> >> >
> >> > I want to know what are the cipher suites that the client is
> >> supporting.
> >> > How can i do that?
> >> >
> >> > -mithun
> >> >
> >>
> >>
> >
>
>

Reply via email to