aboutsummaryrefslogtreecommitdiffstats
path: root/embed/xulrunner/utils/EphyBadCertRejector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'embed/xulrunner/utils/EphyBadCertRejector.cpp')
-rw-r--r--embed/xulrunner/utils/EphyBadCertRejector.cpp68
1 files changed, 0 insertions, 68 deletions
diff --git a/embed/xulrunner/utils/EphyBadCertRejector.cpp b/embed/xulrunner/utils/EphyBadCertRejector.cpp
deleted file mode 100644
index 5aad7d92f..000000000
--- a/embed/xulrunner/utils/EphyBadCertRejector.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright © 2005 Christian Persch
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $Id$
- */
-
-#include <xpcom-config.h>
-#include "config.h"
-
-#include "EphyBadCertRejector.h"
-
-NS_IMPL_THREADSAFE_ISUPPORTS1 (EphyBadCertRejector, nsIBadCertListener)
-
-/* boolean confirmUnknownIssuer (in nsIInterfaceRequestor socketInfo, in nsIX509Cert cert, out short certAddType); */
-NS_IMETHODIMP
-EphyBadCertRejector::ConfirmUnknownIssuer(nsIInterfaceRequestor *socketInfo,
- nsIX509Cert *cert,
- PRInt16 *certAddType,
- PRBool *_retval)
-{
- *certAddType = nsIBadCertListener::UNINIT_ADD_FLAG;
- *_retval = PR_FALSE;
- return NS_OK;
-}
-
-/* boolean confirmMismatchDomain (in nsIInterfaceRequestor socketInfo, in AUTF8String targetURL, in nsIX509Cert cert); */
-NS_IMETHODIMP
-EphyBadCertRejector::ConfirmMismatchDomain(nsIInterfaceRequestor *socketInfo,
- const nsACString & targetURL,
- nsIX509Cert *cert,
- PRBool *_retval)
-{
- *_retval = PR_FALSE;
- return NS_OK;
-}
-
-/* boolean confirmCertExpired (in nsIInterfaceRequestor socketInfo, in nsIX509Cert cert); */
-NS_IMETHODIMP
-EphyBadCertRejector::ConfirmCertExpired(nsIInterfaceRequestor *socketInfo,
- nsIX509Cert *cert,
- PRBool *_retval)
-{
- *_retval = PR_FALSE;
- return NS_OK;
-}
-
-/* void notifyCrlNextupdate (in nsIInterfaceRequestor socketInfo, in AUTF8String targetURL, in nsIX509Cert cert); */
-NS_IMETHODIMP
-EphyBadCertRejector::NotifyCrlNextupdate(nsIInterfaceRequestor *socketInfo,
- const nsACString & targetURL,
- nsIX509Cert *cert)
-{
- return NS_OK;
-}