SSL connection fails on the server with SSL_ERROR_HANDSHAKE_FAILURE_ALERT

2006-10-23 Thread Honzab
Hi all, I would like to ask for advise. We are building a firefox extension and we are using our own implementation of SSL server and client implemented closely to the ssl sample (security\nss\cmd\SSLsample). We are not using PSM socket provider implementation. All certificates (CAs and

Re: SSL connection fails on the server with SSL_ERROR_HANDSHAKE_FAILURE_ALERT

2006-10-23 Thread Honzab
Julien Pierre napsal: NSS only supports RSA ECDHE cipher suites on the client side at this time, so this is expected. If you are using NSS on the server side, you need to enable alternate cipher suites - and of course you need to enable them on the client side as well. Thanks for advise,

Re: SSL connection fails on the server with SSL_ERROR_HANDSHAKE_FAILURE_ALERT

2006-10-23 Thread Julien Pierre
Honzab, Honzab wrote: Julien Pierre napsal: NSS only supports RSA ECDHE cipher suites on the client side at this time, so this is expected. If you are using NSS on the server side, you need to enable alternate cipher suites - and of course you need to enable them on the client side as well.

Re: HASH_* and Sign APIs

2006-10-23 Thread Wan-Teh Chang
[EMAIL PROTECTED] wrote: Hi, HASH_* APIs provide a good wrapper for the hashing algorithms. But secsign.c does not use any of these. It instead calls create/update/end directly on the hash context. Would it be better to use HASH_* APIs in secsign.c? We could use HASH_* APIs in secsign.c.