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
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
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 .
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
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