Re: NSS Support

2008-08-15 Thread Wan-Teh Chang
2008/8/15 Sam Laidler [EMAIL PROTECTED]: Hello, hope all is well. I was wondering if I might ask about hashing efficiency. I am reiteratively hashing values. Basic algorithm is: digestCntxt = PK11_CreateDigestContext(algorithm); while (counter configuredIterations) {

Re: NSS Support

2008-08-15 Thread Robert Relyea
Wan-Teh Chang wrote: 2008/8/15 Sam Laidler [EMAIL PROTECTED]: Hello, hope all is well. I was wondering if I might ask about hashing efficiency. I am reiteratively hashing values. Basic algorithm is: digestCntxt = PK11_CreateDigestContext(algorithm); while (counter

Questions on NSS_Shutdown () and Firefox crash

2008-08-15 Thread Ruchi Lohani
Hi, I have been using NSS for quite some time now. If using NSS and cURL (built with NSS) simultaneously in the application running on browser, it is going to be a problem. As, while curl_global_cleanup (), it calls NSS_Shtdown internally and is there a possibility that firefox will work

Re: Error adding certificate to NSS database

2008-08-15 Thread Nelson B Bolyard
Yevgeniy Gubenko wrote, On 2008-08-07 09:09: Hi, I use NSS3.11.4 with NSPR 4.6.4 (for fips compliant usage). Here are the steps I perform to add new certificate to NSS db: [snip] After last command I get an error: certutil: could not add certificate to token or database: Error adding

Re: Questions on NSS_Shutdown () and Firefox crash

2008-08-15 Thread Nelson B Bolyard
Ruchi Lohani wrote, On 2008-08-15 16:35: Hi, I have been using NSS for quite some time now. If using NSS and cURL (built with NSS) simultaneously in the application running on browser, it is going to be a problem. As, while curl_global_cleanup (), it calls NSS_Shtdown internally and is there

Re: Questions on NSS_Shutdown () and Firefox crash

2008-08-15 Thread Wan-Teh Chang
We ran into a similar problem with PKCS #11 modules that NSS and some other libraries share. When one of the libraries calls C_Finalize on the shared PKCS #11 module, it prevents the other libraries from using the PKCS #11 module. Some possible solutions to this problem: 1. Change cURL to call