tags:

views:

79

answers:

1

I have my very own privacy CA library. So now I want to integrate it with the mozilla nss. So every time when my firefox want to access https page, it will call this library via nss. my problem is, i could not find, at with point (or with source file) within firefox that make a call for nss_init stuff..

help me

+1  A: 

I think you are actually looking for NSS_Initialize, which is loaded here. This function will be called the first time an https url is loaded.

sdwilsh