RE: certificate storage format

2011-11-28 Thread ramaswamy
DER and PEM -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of prabhu kalyan rout Sent: Monday, November 28, 2011 1:04 PM To: openssl-users@openssl.org Subject: certificate storage format Hi, my question is how many certificate s

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: Help in Generating Chained ROOT Certificate

2011-11-03 Thread ramaswamy
Try this...if you need some extensions you can add those in openssl.cnf. export OPENSSL_CONF=./openssl.cnf PATH=.:$PATH # Root Certificate openssl genrsa -out ROOT.key 2048 openssl req -new -x509 -key ROOT.key -sha1 -out ROOT.cert.pem -extensions root_cert -days 7400 openssl asn1parse -in ROOT.c

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

OpenSSL - WinCE support

2008-10-22 Thread Palaniappan Ramaswamy
Hi, Please let me know, which version of OpenSSL has support for WinCe. When I tried to build version openssl-0.9.8i for WinCe, I came across different issue like, header files not found. I manage to copy the required files from "C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\Sma

RE: compiling 32bit binary on solaris 8

2003-10-24 Thread Venkatesh Ramaswamy
one through all the relevent Makefiles and cannot find where these libs are getting built in 64bit. Does anyone know where this might be happening? Thanks, -jim On Thu, 23 Oct 2003, Venkatesh Ramaswamy wrote: > Use sparcv7 or sparcv8 for the configure script. sparcv9 is sun4u and links in th

RE: compiling 32bit binary on solaris 8

2003-10-23 Thread Venkatesh Ramaswamy
Use sparcv7 or sparcv8 for the configure script. sparcv9 is sun4u and links in the 64-bit libraries. -Original Message- From: Jim Mack [mailto:[EMAIL PROTECTED] Sent: Thu 10/23/2003 6:19 PM To: [EMAIL PROTECTED] Cc: Subject: compiling 3