Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "nsISupports.idl"
9 /*
10 * Historically, principals, certificates, and signed JARs were all linked
11 * together in one big mess. When that mess was cleaned up, it turned out that
12 * the principals used to store certificate information didn't overlap at all
13 * with the principals used for security policy. So this interface was created
14 * so that real principals wouldn't have to carry around all that baggage.
15 *
16 * The name here is totally a misnomer. This isn't a principal at all, and would
17 * better be called nsICertificateHolder or something. But that would require
18 * renaming some APIs, so let's just let this be for now.
19 */
21 [scriptable, uuid(7cd4af5a-64d3-44a8-9700-804a42a6109a)]
22 interface nsICertificatePrincipal : nsISupports
23 {
24 readonly attribute AUTF8String fingerprint;
25 readonly attribute AUTF8String prettyName;
26 readonly attribute AUTF8String subjectName;
27 readonly attribute nsISupports certificate;
28 readonly attribute boolean hasCertificate; // For compat; always true.
30 bool equals(in nsICertificatePrincipal aOther);
31 };
33 ////////////////////////////////////////////////////////////////////////////////