2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2014-08-15 11:27:22 -07:00
|
|
|
interface nsIX509CertList;
|
|
|
|
|
2014-08-15 11:27:31 -07:00
|
|
|
[scriptable, uuid(c754ef58-853f-4870-abf7-98be325d2b97)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsITransportSecurityInfo : nsISupports {
|
|
|
|
readonly attribute unsigned long securityState;
|
|
|
|
readonly attribute wstring errorMessage;
|
2014-08-15 11:27:22 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If certificate verification failed, this will be the peer certificate
|
|
|
|
* chain provided in the handshake, so it can be used for error reporting.
|
|
|
|
* If verification succeeded, this will be null.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIX509CertList failedCertChain;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|