2001-10-30 23:52:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-31 09:33:35 +00: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-10-30 23:52:01 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIX509Cert;
|
|
|
|
interface nsIInterfaceRequestor;
|
|
|
|
|
2015-09-05 05:52:00 +00:00
|
|
|
[scriptable, uuid(92396323-23f2-49e0-bf98-a25a725231ab)]
|
2001-10-30 23:52:01 +00:00
|
|
|
interface nsIUserCertPicker : nsISupports {
|
|
|
|
nsIX509Cert pickByUsage(in nsIInterfaceRequestor ctx,
|
2002-03-27 02:29:34 +00:00
|
|
|
in wstring selectedNickname,
|
2002-09-18 17:15:58 +00:00
|
|
|
in long certUsage, // as defined by NSS enum SECCertUsage
|
2001-10-30 23:52:01 +00:00
|
|
|
in boolean allowInvalid,
|
|
|
|
in boolean allowDuplicateNicknames,
|
2015-09-05 05:52:00 +00:00
|
|
|
in AString emailAddress, // optional - if non-empty,
|
|
|
|
// skip certificates which
|
|
|
|
// have at least one e-mail
|
|
|
|
// address but do not
|
|
|
|
// include this specific one
|
2001-10-30 23:52:01 +00:00
|
|
|
out boolean canceled);
|
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
#define NS_CERT_PICKER_CONTRACTID "@mozilla.org/user_cert_picker;1"
|
|
|
|
%}
|