Re: Need info on Cipher suites

2011-11-04 Thread ramaswamy . bm
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

Re: Need info on Cipher suites

2011-11-04 Thread ramaswamy . bm
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 > __ Op

Re: File CER into File PFX

2011-02-14 Thread Ramaswamy BM
Try this openssl pkcs12 -inkey cert.key -in cert.cer -export -out output.pfx Thanks, Ram yann458 wrote: Hello, I need to convert a file .CER into file PFX knowing that I do not have to file KEY (.PVK) Help me because I know little in certificate. I absolutely need. Thank you very help .

Re: How to disable compression?

2010-12-15 Thread Ramaswamy BM
Try this SSL_CTX * tls_ctx; STACK_OF(SSL_COMP)* compression ; compression = SSL_COMP_get_compression_methods(); sk_SSL_COMP_zero(compression); It should disable the compression support for !! You can also use below API accordingly to enable/disable required encryption/a

Re: How to disable compression?

2010-12-15 Thread Ramaswamy BM
Ramaswamy BM wrote: Try this SSL_CTX * tls_ctx; STACK_OF(SSL_COMP)* compression ; compression = SSL_COMP_get_compression_methods(); sk_SSL_COMP_zero(compression); It should disable the compression support for !! You can also use below API accordingly to enable/disable