0

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

karikari
  • 6,627
  • 16
  • 64
  • 79

1 Answers1

1

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
  • 4,674
  • 1
  • 22
  • 20