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