2001-03-06 08:00:47 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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/. */
|
2001-03-06 08:00:47 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2014-08-15 22:27:22 +04:00
|
|
|
interface nsIX509CertList;
|
|
|
|
|
2017-09-23 04:43:18 +03:00
|
|
|
[builtinclass, scriptable, uuid(216112d3-28bc-4671-b057-f98cc09ba1ea)]
|
2001-03-06 08:00:47 +03:00
|
|
|
interface nsITransportSecurityInfo : nsISupports {
|
2017-09-23 04:43:18 +03:00
|
|
|
readonly attribute unsigned long securityState;
|
|
|
|
[infallible] readonly attribute long errorCode; // PRErrorCode
|
2018-03-27 14:31:52 +03:00
|
|
|
// errorCode as string (e.g. "SEC_ERROR_UNKNOWN_ISSUER")
|
|
|
|
readonly attribute AString errorCodeString;
|
2014-08-15 22:27:22 +04: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;
|
2001-03-06 08:00:47 +03:00
|
|
|
};
|
|
|
|
|