Re: OCSP

2006-05-13 Thread Richard Salz
Look at the end of section 4.1.1 for the details of target cert identifier /r$ -- SOA Appliances Application Integration Middleware __ OpenSSL Project http://www.openssl.org User Support

RE: SSL renegotiation DOS ?

2006-05-13 Thread Marek Marcola
Hello, Application layer do not see this. Right, that's why I suggested making it visible to the application layer. The application layer already has to have code to handle excessive load because there are many ways to place load that are not visible at the SSL layer. Better to

How to distinguish between RSA and DSA keys in certificates?

2006-05-13 Thread sefi
Hi, I have to check that a certificate is encrypted with RSA and not DSA. I can't find any API function for that. Please help me. Philipp __ OpenSSL Project http://www.openssl.org User Support

Re: How to distinguish between RSA and DSA keys in certificates?

2006-05-13 Thread Marek Marcola
Hello, I have to check that a certificate is encrypted with RSA and not DSA. I can't find any API function for that. Please help me. EVP_PKEY *pkey; if ( (pkey = X509_get_pubkey(cert)) == NULL ){ goto err; } if (pkey-type == EVP_PKEY_RSA ){ // RSA else if (pkey-type ==

Openssl on a Montavista linux for a embedded ARM 9

2006-05-13 Thread Edwin Cordeiro
Hi,I want to use openssl on a Montavista linux for a embedded ARM 9. Is it possible?I'm using CentOS 4 to compile for the Montavista using a cross-compiler supplied by Montavista, but I can't setup the make file to do this. The Configure offers no options for arm-linux. How do I compile