Re: FireFox CRASHED while edting trust settings at Cert Manager

2006-05-10 Thread oscarsoOpenSC
Bug reported for this issue: https://bugzilla.mozilla.org/show_bug.cgi?id=335847 [EMAIL PROTECTED] wrote: > Also, my PKCS #11 module is using OpenSSL 0.9.8a from Shining Light > Productions. > (Reference: http://www.slproweb.com/products/Win32OpenSSL.html)

Re: FireFox CRASHED while edting trust settings at Cert Manager

2006-04-25 Thread oscarsoOpenSC
Also, my PKCS #11 module is using OpenSSL 0.9.8a from Shining Light Productions. (Reference: http://www.slproweb.com/products/Win32OpenSSL.html) ___ dev-tech-crypto mailing list dev-tech-crypto@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-tec

Re: FireFox CRASHED while edting trust settings at Cert Manager

2006-04-25 Thread oscarsoOpenSC
I checked the FireFox source code. It seems like during change trust settings event (i.e. User click on "Edit" button from Cert Manager), it goes into the database and look for the cert. However, my cert chains is in the crypto-hardware token. I also tested "change trust settings" after using the "

Re: FireFox CRASHED while edting trust settings at Cert Manager

2006-04-24 Thread oscarsoOpenSC
FireFox will NOT crash when the Root CA cert is imported from the Cert Manager's "Import" button. ___ dev-tech-crypto mailing list dev-tech-crypto@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-tech-crypto

FireFox CRASHED while edting trust settings at Cert Manager

2006-04-24 Thread oscarsoOpenSC
Hi, With my own implementation of PKCS#11 module, FireFox crashed when I try edting the trust settings at Cert Manager. Steps to reproduce: 1. PKCS#11 module reads the DER Root CA cert into the FireFox "Authorities" store. 2. Go to FireFox Certificate Manager under "Authorities" 3. Click on the R

Re: Add CaCert.org Root CA into FireFox "Authorities"

2006-04-14 Thread oscarsoOpenSC
I found the answer. In order to store the Root CA cert, or Interm CA cert into FireFox cert store under "Authorities" tab, during PKCS#11 initialization, two P11 objects for each cert are needed: a Trusted Object and a Certificate Object. For example, for a Trusted Object, it should have the follo

Difference between session and context

2006-04-14 Thread oscarsoOpenSC
Hi, What are the differences between PKCS#11 session (C_OpenSession), MS-CAPI context (CryptAcquireContext), and PC/SC context (SCardEstablishContext) ? What are the scope of them ? Can we have multiple SCardEstablishContext within a PKCS#11 session (or MS-CAPI context) ? Thanks alot! Oscar __