2001-01-10 01:32:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2004-04-25 15:03:26 +00:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2001-01-10 01:32:29 +00:00
|
|
|
*
|
2004-04-25 15:03:26 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2001-01-10 01:32:29 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-25 15:03:26 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2001-01-10 01:32:29 +00:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Hubbie Shaw
|
|
|
|
* Doug Turner <dougt@netscape.com>
|
2003-09-29 06:04:02 +00:00
|
|
|
* Brian Ryner <bryner@brianryner.com>
|
2007-10-19 19:16:34 +00:00
|
|
|
* Kai Engert <kengert@redhat.com>
|
2004-04-25 15:03:26 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2001-01-10 01:32:29 +00:00
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
#include "mozilla/ModuleUtils.h"
|
2001-01-10 01:32:29 +00:00
|
|
|
|
|
|
|
#include "nsNSSComponent.h"
|
|
|
|
#include "nsSSLSocketProvider.h"
|
|
|
|
#include "nsTLSSocketProvider.h"
|
2001-05-03 01:00:56 +00:00
|
|
|
#include "nsKeygenHandler.h"
|
2001-01-10 01:32:29 +00:00
|
|
|
|
2001-01-31 18:03:49 +00:00
|
|
|
#include "nsSDR.h"
|
|
|
|
|
2001-02-06 23:01:33 +00:00
|
|
|
#include "nsPK11TokenDB.h"
|
2001-05-15 20:40:28 +00:00
|
|
|
#include "nsPKCS11Slot.h"
|
2001-02-26 21:50:54 +00:00
|
|
|
#include "nsNSSCertificate.h"
|
2010-10-26 11:57:18 +00:00
|
|
|
#include "nsNSSCertificateFakeTransport.h"
|
2002-09-17 18:51:22 +00:00
|
|
|
#include "nsNSSCertificateDB.h"
|
|
|
|
#include "nsNSSCertCache.h"
|
|
|
|
#include "nsCMS.h"
|
2003-04-11 00:56:27 +00:00
|
|
|
#ifdef MOZ_XUL
|
2002-03-29 02:46:01 +00:00
|
|
|
#include "nsCertTree.h"
|
2003-04-11 00:56:27 +00:00
|
|
|
#endif
|
2001-05-15 23:15:12 +00:00
|
|
|
#include "nsCrypto.h"
|
|
|
|
//For the NS_CRYPTO_CONTRACTID define
|
|
|
|
#include "nsDOMCID.h"
|
|
|
|
|
2001-10-30 23:52:01 +00:00
|
|
|
#include "nsCMSSecureMessage.h"
|
|
|
|
#include "nsCertPicker.h"
|
2001-11-30 00:07:13 +00:00
|
|
|
#include "nsCURILoader.h"
|
|
|
|
#include "nsICategoryManager.h"
|
2002-09-17 18:51:22 +00:00
|
|
|
#include "nsCRLManager.h"
|
2003-11-18 02:20:34 +00:00
|
|
|
#include "nsNTLMAuthModule.h"
|
2006-08-12 06:39:47 +00:00
|
|
|
#include "nsStreamCipher.h"
|
|
|
|
#include "nsKeyModule.h"
|
2007-09-03 17:32:39 +00:00
|
|
|
#include "nsDataSignatureVerifier.h"
|
2007-10-03 11:47:26 +00:00
|
|
|
#include "nsCertOverrideService.h"
|
2007-10-12 22:48:07 +00:00
|
|
|
#include "nsRandomGenerator.h"
|
2007-10-19 19:16:34 +00:00
|
|
|
#include "nsRecentBadCerts.h"
|
2007-11-30 18:05:54 +00:00
|
|
|
#include "nsSSLStatus.h"
|
2012-04-30 04:00:22 +00:00
|
|
|
#include "TransportSecurityInfo.h"
|
2010-10-28 15:46:00 +00:00
|
|
|
#include "NSSErrorsService.h"
|
2012-03-01 16:29:48 +00:00
|
|
|
#include "nsNSSVersion.h"
|
2001-01-31 18:03:49 +00:00
|
|
|
|
2010-10-26 11:57:18 +00:00
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
#define NS_IS_PROCESS_DEFAULT \
|
|
|
|
(GeckoProcessType_Default == XRE_GetProcessType())
|
|
|
|
|
|
|
|
#define NS_NSS_INSTANTIATE(ensureOperator, _InstanceClass) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
_InstanceClass * inst; \
|
|
|
|
inst = new _InstanceClass(); \
|
|
|
|
if (NULL == inst) { \
|
|
|
|
if (ensureOperator == nssLoadingComponent) \
|
|
|
|
EnsureNSSInitialized(nssInitFailed); \
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
NS_ADDREF(inst); \
|
|
|
|
rv = inst->QueryInterface(aIID, aResult); \
|
|
|
|
NS_RELEASE(inst); \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
#define NS_NSS_INSTANTIATE_INIT(ensureOperator, _InstanceClass, _InitMethod) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
_InstanceClass * inst; \
|
|
|
|
inst = new _InstanceClass(); \
|
|
|
|
if (NULL == inst) { \
|
|
|
|
if (ensureOperator == nssLoadingComponent) \
|
|
|
|
EnsureNSSInitialized(nssInitFailed); \
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
NS_ADDREF(inst); \
|
|
|
|
rv = inst->_InitMethod(); \
|
|
|
|
if(NS_SUCCEEDED(rv)) { \
|
|
|
|
rv = inst->QueryInterface(aIID, aResult); \
|
|
|
|
} \
|
|
|
|
NS_RELEASE(inst); \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
|
|
|
|
#define NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(ensureOperator, \
|
|
|
|
_InstanceClass) \
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_BYPROCESS(ensureOperator, \
|
|
|
|
_InstanceClass, \
|
|
|
|
_InstanceClass)
|
|
|
|
|
2001-11-29 23:36:34 +00:00
|
|
|
// These two macros are ripped off from nsIGenericFactory.h and slightly
|
|
|
|
// modified.
|
2010-10-26 11:57:18 +00:00
|
|
|
#define NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_BYPROCESS(ensureOperator, \
|
|
|
|
_InstanceClassChrome, \
|
|
|
|
_InstanceClassContent) \
|
2010-06-10 18:11:40 +00:00
|
|
|
static nsresult \
|
2010-10-26 11:57:18 +00:00
|
|
|
_InstanceClassChrome##Constructor(nsISupports *aOuter, REFNSIID aIID, \
|
|
|
|
void **aResult) \
|
2001-11-29 23:36:34 +00:00
|
|
|
{ \
|
|
|
|
nsresult rv; \
|
|
|
|
\
|
|
|
|
*aResult = NULL; \
|
|
|
|
if (NULL != aOuter) { \
|
|
|
|
rv = NS_ERROR_NO_AGGREGATION; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (!EnsureNSSInitialized(ensureOperator)) \
|
|
|
|
return NS_ERROR_FAILURE; \
|
2009-02-28 14:06:40 +00:00
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (NS_IS_PROCESS_DEFAULT) \
|
|
|
|
NS_NSS_INSTANTIATE(ensureOperator, _InstanceClassChrome); \
|
|
|
|
else \
|
|
|
|
NS_NSS_INSTANTIATE(ensureOperator, _InstanceClassContent); \
|
2001-11-29 23:36:34 +00:00
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (ensureOperator == nssLoadingComponent) \
|
2009-02-28 14:06:40 +00:00
|
|
|
{ \
|
|
|
|
if (NS_SUCCEEDED(rv)) \
|
|
|
|
EnsureNSSInitialized(nssInitSucceeded); \
|
|
|
|
else \
|
|
|
|
EnsureNSSInitialized(nssInitFailed); \
|
|
|
|
} \
|
|
|
|
\
|
2001-11-29 23:36:34 +00:00
|
|
|
return rv; \
|
2010-10-26 11:57:18 +00:00
|
|
|
}
|
2001-11-29 23:36:34 +00:00
|
|
|
|
|
|
|
|
2010-10-26 11:57:18 +00:00
|
|
|
#define NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(ensureOperator, \
|
|
|
|
_InstanceClass, \
|
|
|
|
_InitMethod) \
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT_BYPROCESS(ensureOperator, \
|
|
|
|
_InstanceClass, \
|
|
|
|
_InstanceClass, \
|
|
|
|
_InitMethod)
|
|
|
|
|
|
|
|
#define NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT_BYPROCESS(ensureOperator, \
|
|
|
|
_InstanceClassChrome, \
|
|
|
|
_InstanceClassContent, \
|
|
|
|
_InitMethod) \
|
2010-06-10 18:11:40 +00:00
|
|
|
static nsresult \
|
2010-10-26 11:57:18 +00:00
|
|
|
_InstanceClassChrome##Constructor(nsISupports *aOuter, REFNSIID aIID, \
|
|
|
|
void **aResult) \
|
2001-11-29 23:36:34 +00:00
|
|
|
{ \
|
|
|
|
nsresult rv; \
|
|
|
|
\
|
|
|
|
*aResult = NULL; \
|
|
|
|
if (NULL != aOuter) { \
|
|
|
|
rv = NS_ERROR_NO_AGGREGATION; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (!EnsureNSSInitialized(ensureOperator)) \
|
|
|
|
return NS_ERROR_FAILURE; \
|
2009-02-28 14:06:40 +00:00
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (NS_IS_PROCESS_DEFAULT) \
|
|
|
|
NS_NSS_INSTANTIATE_INIT(ensureOperator, \
|
|
|
|
_InstanceClassChrome, \
|
|
|
|
_InitMethod); \
|
|
|
|
else \
|
|
|
|
NS_NSS_INSTANTIATE_INIT(ensureOperator, \
|
|
|
|
_InstanceClassContent, \
|
|
|
|
_InitMethod); \
|
2001-11-29 23:36:34 +00:00
|
|
|
\
|
2010-10-26 11:57:18 +00:00
|
|
|
if (ensureOperator == nssLoadingComponent) \
|
2009-02-28 14:06:40 +00:00
|
|
|
{ \
|
|
|
|
if (NS_SUCCEEDED(rv)) \
|
|
|
|
EnsureNSSInitialized(nssInitSucceeded); \
|
|
|
|
else \
|
|
|
|
EnsureNSSInitialized(nssInitFailed); \
|
|
|
|
} \
|
|
|
|
\
|
2001-11-29 23:36:34 +00:00
|
|
|
return rv; \
|
2010-10-26 11:57:18 +00:00
|
|
|
}
|
2001-11-29 23:36:34 +00:00
|
|
|
|
2010-10-26 11:57:18 +00:00
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nssLoadingComponent, nsNSSComponent,
|
|
|
|
Init)
|
2001-11-29 23:36:34 +00:00
|
|
|
|
2012-04-30 04:00:22 +00:00
|
|
|
using namespace mozilla::psm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2001-11-29 23:36:34 +00:00
|
|
|
// Use the special factory constructor for everything this module implements,
|
|
|
|
// because all code could potentially require the NSS library.
|
|
|
|
// Our factory constructor takes an additional boolean parameter.
|
2011-10-17 14:59:28 +00:00
|
|
|
// Only for the nsNSSComponent, set this to true.
|
|
|
|
// All other classes must have this set to false.
|
2001-11-29 23:36:34 +00:00
|
|
|
|
2010-10-26 11:57:18 +00:00
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsSSLSocketProvider)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsTLSSocketProvider)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsSecretDecoderRing)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsPK11TokenDB)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsPKCS11ModuleDB)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nssEnsure, PSMContentListener, init)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_BYPROCESS(nssEnsureOnChromeOnly,
|
|
|
|
nsNSSCertificate,
|
|
|
|
nsNSSCertificateFakeTransport)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsNSSCertificateDB)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsNSSCertCache)
|
2003-04-11 00:56:27 +00:00
|
|
|
#ifdef MOZ_XUL
|
2010-10-26 11:57:18 +00:00
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCertTree)
|
2003-04-11 00:56:27 +00:00
|
|
|
#endif
|
2010-10-26 11:57:18 +00:00
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCrypto)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsPkcs11)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCMSSecureMessage)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCMSDecoder)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCMSEncoder)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCMSMessage)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCertPicker)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCRLManager)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nssEnsure, nsNTLMAuthModule, InitTest)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCryptoHash)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsCryptoHMAC)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsStreamCipher)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsKeyObject)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsKeyObjectFactory)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsDataSignatureVerifier)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nssEnsure, nsCertOverrideService, Init)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsure, nsRandomGenerator)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nssEnsure, nsRecentBadCertsService, Init)
|
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsureOnChromeOnly, nsSSLStatus)
|
2012-04-30 04:00:22 +00:00
|
|
|
NS_NSS_GENERIC_FACTORY_CONSTRUCTOR(nssEnsureOnChromeOnly, TransportSecurityInfo)
|
2001-01-10 01:32:29 +00:00
|
|
|
|
2010-10-28 15:46:00 +00:00
|
|
|
typedef mozilla::psm::NSSErrorsService NSSErrorsService;
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(NSSErrorsService, Init)
|
2012-03-01 16:29:48 +00:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsNSSVersion)
|
2010-10-28 15:46:00 +00:00
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_NSSCOMPONENT_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_SSLSOCKETPROVIDER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_STARTTLSSOCKETPROVIDER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_SDR_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_PK11TOKENDB_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_PKCS11MODULEDB_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_PSMCONTENTLISTEN_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_X509CERT_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_X509CERTDB_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_NSSCERTCACHE_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_FORMPROCESSOR_CID);
|
2003-04-11 00:56:27 +00:00
|
|
|
#ifdef MOZ_XUL
|
2010-06-10 18:11:40 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_CERTTREE_CID);
|
2003-04-11 00:56:27 +00:00
|
|
|
#endif
|
2010-06-10 18:11:40 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_PKCS11_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CRYPTO_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CMSSECUREMESSAGE_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CMSDECODER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CMSENCODER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CMSMESSAGE_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CRYPTO_HASH_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CRYPTO_HMAC_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CERT_PICKER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CRLMANAGER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_NTLMAUTHMODULE_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_STREAMCIPHER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_KEYMODULEOBJECT_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_KEYMODULEOBJECTFACTORY_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_DATASIGNATUREVERIFIER_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_CERTOVERRIDE_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_RANDOMGENERATOR_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_RECENTBADCERTS_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_SSLSTATUS_CID);
|
2012-04-30 04:00:22 +00:00
|
|
|
NS_DEFINE_NAMED_CID(TRANSPORTSECURITYINFO_CID);
|
2010-10-28 15:46:00 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_NSSERRORSSERVICE_CID);
|
2012-03-01 16:29:48 +00:00
|
|
|
NS_DEFINE_NAMED_CID(NS_NSSVERSION_CID);
|
2010-06-10 18:11:40 +00:00
|
|
|
|
|
|
|
static const mozilla::Module::CIDEntry kNSSCIDs[] = {
|
|
|
|
{ &kNS_NSSCOMPONENT_CID, false, NULL, nsNSSComponentConstructor },
|
|
|
|
{ &kNS_SSLSOCKETPROVIDER_CID, false, NULL, nsSSLSocketProviderConstructor },
|
|
|
|
{ &kNS_STARTTLSSOCKETPROVIDER_CID, false, NULL, nsTLSSocketProviderConstructor },
|
|
|
|
{ &kNS_SDR_CID, false, NULL, nsSecretDecoderRingConstructor },
|
|
|
|
{ &kNS_PK11TOKENDB_CID, false, NULL, nsPK11TokenDBConstructor },
|
|
|
|
{ &kNS_PKCS11MODULEDB_CID, false, NULL, nsPKCS11ModuleDBConstructor },
|
|
|
|
{ &kNS_PSMCONTENTLISTEN_CID, false, NULL, PSMContentListenerConstructor },
|
|
|
|
{ &kNS_X509CERT_CID, false, NULL, nsNSSCertificateConstructor },
|
|
|
|
{ &kNS_X509CERTDB_CID, false, NULL, nsNSSCertificateDBConstructor },
|
|
|
|
{ &kNS_NSSCERTCACHE_CID, false, NULL, nsNSSCertCacheConstructor },
|
|
|
|
{ &kNS_FORMPROCESSOR_CID, false, NULL, nsKeygenFormProcessor::Create },
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
{ &kNS_CERTTREE_CID, false, NULL, nsCertTreeConstructor },
|
|
|
|
#endif
|
|
|
|
{ &kNS_PKCS11_CID, false, NULL, nsPkcs11Constructor },
|
|
|
|
{ &kNS_CRYPTO_CID, false, NULL, nsCryptoConstructor },
|
|
|
|
{ &kNS_CMSSECUREMESSAGE_CID, false, NULL, nsCMSSecureMessageConstructor },
|
|
|
|
{ &kNS_CMSDECODER_CID, false, NULL, nsCMSDecoderConstructor },
|
|
|
|
{ &kNS_CMSENCODER_CID, false, NULL, nsCMSEncoderConstructor },
|
|
|
|
{ &kNS_CMSMESSAGE_CID, false, NULL, nsCMSMessageConstructor },
|
|
|
|
{ &kNS_CRYPTO_HASH_CID, false, NULL, nsCryptoHashConstructor },
|
|
|
|
{ &kNS_CRYPTO_HMAC_CID, false, NULL, nsCryptoHMACConstructor },
|
|
|
|
{ &kNS_CERT_PICKER_CID, false, NULL, nsCertPickerConstructor },
|
|
|
|
{ &kNS_CRLMANAGER_CID, false, NULL, nsCRLManagerConstructor },
|
|
|
|
{ &kNS_NTLMAUTHMODULE_CID, false, NULL, nsNTLMAuthModuleConstructor },
|
|
|
|
{ &kNS_STREAMCIPHER_CID, false, NULL, nsStreamCipherConstructor },
|
|
|
|
{ &kNS_KEYMODULEOBJECT_CID, false, NULL, nsKeyObjectConstructor },
|
|
|
|
{ &kNS_KEYMODULEOBJECTFACTORY_CID, false, NULL, nsKeyObjectFactoryConstructor },
|
|
|
|
{ &kNS_DATASIGNATUREVERIFIER_CID, false, NULL, nsDataSignatureVerifierConstructor },
|
|
|
|
{ &kNS_CERTOVERRIDE_CID, false, NULL, nsCertOverrideServiceConstructor },
|
|
|
|
{ &kNS_RANDOMGENERATOR_CID, false, NULL, nsRandomGeneratorConstructor },
|
|
|
|
{ &kNS_RECENTBADCERTS_CID, false, NULL, nsRecentBadCertsServiceConstructor },
|
|
|
|
{ &kNS_SSLSTATUS_CID, false, NULL, nsSSLStatusConstructor },
|
2012-04-30 04:00:22 +00:00
|
|
|
{ &kTRANSPORTSECURITYINFO_CID, false, NULL, TransportSecurityInfoConstructor },
|
2010-10-28 15:46:00 +00:00
|
|
|
{ &kNS_NSSERRORSSERVICE_CID, false, NULL, NSSErrorsServiceConstructor },
|
2012-03-01 16:29:48 +00:00
|
|
|
{ &kNS_NSSVERSION_CID, false, NULL, nsNSSVersionConstructor },
|
2010-06-10 18:11:40 +00:00
|
|
|
{ NULL }
|
|
|
|
};
|
2007-10-19 19:16:34 +00:00
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
static const mozilla::Module::ContractIDEntry kNSSContracts[] = {
|
|
|
|
{ PSM_COMPONENT_CONTRACTID, &kNS_NSSCOMPONENT_CID },
|
2010-10-28 15:46:00 +00:00
|
|
|
{ NS_NSS_ERRORS_SERVICE_CONTRACTID, &kNS_NSSERRORSSERVICE_CID },
|
2012-03-01 16:29:48 +00:00
|
|
|
{ NS_NSSVERSION_CONTRACTID, &kNS_NSSVERSION_CID },
|
2010-06-10 18:11:40 +00:00
|
|
|
{ NS_SSLSOCKETPROVIDER_CONTRACTID, &kNS_SSLSOCKETPROVIDER_CID },
|
|
|
|
{ NS_STARTTLSSOCKETPROVIDER_CONTRACTID, &kNS_STARTTLSSOCKETPROVIDER_CID },
|
|
|
|
{ NS_SDR_CONTRACTID, &kNS_SDR_CID },
|
|
|
|
{ NS_PK11TOKENDB_CONTRACTID, &kNS_PK11TOKENDB_CID },
|
|
|
|
{ NS_PKCS11MODULEDB_CONTRACTID, &kNS_PKCS11MODULEDB_CID },
|
|
|
|
{ NS_PSMCONTENTLISTEN_CONTRACTID, &kNS_PSMCONTENTLISTEN_CID },
|
|
|
|
{ NS_X509CERTDB_CONTRACTID, &kNS_X509CERTDB_CID },
|
|
|
|
{ NS_NSSCERTCACHE_CONTRACTID, &kNS_NSSCERTCACHE_CID },
|
|
|
|
{ NS_FORMPROCESSOR_CONTRACTID, &kNS_FORMPROCESSOR_CID },
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
{ NS_CERTTREE_CONTRACTID, &kNS_CERTTREE_CID },
|
|
|
|
#endif
|
|
|
|
{ NS_PKCS11_CONTRACTID, &kNS_PKCS11_CID },
|
|
|
|
{ NS_CRYPTO_CONTRACTID, &kNS_CRYPTO_CID },
|
|
|
|
{ NS_CMSSECUREMESSAGE_CONTRACTID, &kNS_CMSSECUREMESSAGE_CID },
|
|
|
|
{ NS_CMSDECODER_CONTRACTID, &kNS_CMSDECODER_CID },
|
|
|
|
{ NS_CMSENCODER_CONTRACTID, &kNS_CMSENCODER_CID },
|
|
|
|
{ NS_CMSMESSAGE_CONTRACTID, &kNS_CMSMESSAGE_CID },
|
|
|
|
{ NS_CRYPTO_HASH_CONTRACTID, &kNS_CRYPTO_HASH_CID },
|
|
|
|
{ NS_CRYPTO_HMAC_CONTRACTID, &kNS_CRYPTO_HMAC_CID },
|
|
|
|
{ NS_CERT_PICKER_CONTRACTID, &kNS_CERT_PICKER_CID },
|
|
|
|
{ "@mozilla.org/uriloader/psm-external-content-listener;1", &kNS_PSMCONTENTLISTEN_CID },
|
|
|
|
{ NS_CRLMANAGER_CONTRACTID, &kNS_CRLMANAGER_CID },
|
|
|
|
{ NS_CRYPTO_FIPSINFO_SERVICE_CONTRACTID, &kNS_PKCS11MODULEDB_CID },
|
|
|
|
{ NS_NTLMAUTHMODULE_CONTRACTID, &kNS_NTLMAUTHMODULE_CID },
|
|
|
|
{ NS_STREAMCIPHER_CONTRACTID, &kNS_STREAMCIPHER_CID },
|
|
|
|
{ NS_KEYMODULEOBJECT_CONTRACTID, &kNS_KEYMODULEOBJECT_CID },
|
|
|
|
{ NS_KEYMODULEOBJECTFACTORY_CONTRACTID, &kNS_KEYMODULEOBJECTFACTORY_CID },
|
|
|
|
{ NS_DATASIGNATUREVERIFIER_CONTRACTID, &kNS_DATASIGNATUREVERIFIER_CID },
|
|
|
|
{ NS_CERTOVERRIDE_CONTRACTID, &kNS_CERTOVERRIDE_CID },
|
|
|
|
{ NS_RANDOMGENERATOR_CONTRACTID, &kNS_RANDOMGENERATOR_CID },
|
|
|
|
{ NS_RECENTBADCERTS_CONTRACTID, &kNS_RECENTBADCERTS_CID },
|
|
|
|
{ NULL }
|
|
|
|
};
|
2007-11-30 18:05:54 +00:00
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
static const mozilla::Module::CategoryEntry kNSSCategories[] = {
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-x509-ca-cert", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-x509-server-cert", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-x509-user-cert", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-x509-email-cert", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-pkcs7-crl", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/x-x509-crl", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY, "application/pkix-crl", "@mozilla.org/uriloader/psm-external-content-listener;1" },
|
|
|
|
{ NULL }
|
|
|
|
};
|
2007-11-30 18:05:54 +00:00
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
static const mozilla::Module kNSSModule = {
|
|
|
|
mozilla::Module::kVersion,
|
|
|
|
kNSSCIDs,
|
|
|
|
kNSSContracts,
|
|
|
|
kNSSCategories
|
2001-01-10 01:32:29 +00:00
|
|
|
};
|
|
|
|
|
2012-04-30 04:00:22 +00:00
|
|
|
} // unnamed namespace
|
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
NSMODULE_DEFN(NSS) = &kNSSModule;
|