|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 #include "nsISupports.idl" |
|
7 |
|
8 interface nsIX509Cert; |
|
9 interface nsIInterfaceRequestor; |
|
10 |
|
11 [scriptable, uuid(06d018e0-d41b-4629-a4fc-daaa6029888e)] |
|
12 interface nsIUserCertPicker : nsISupports { |
|
13 nsIX509Cert pickByUsage(in nsIInterfaceRequestor ctx, |
|
14 in wstring selectedNickname, |
|
15 in long certUsage, // as defined by NSS enum SECCertUsage |
|
16 in boolean allowInvalid, |
|
17 in boolean allowDuplicateNicknames, |
|
18 out boolean canceled); |
|
19 }; |
|
20 |
|
21 %{C++ |
|
22 #define NS_CERT_PICKER_CONTRACTID "@mozilla.org/user_cert_picker;1" |
|
23 %} |