forked from mirrors/gecko-dev
Before this patch, we exposed a few interfaces that revolved around mapping a name to a specific PKCS#11 module, slot, or token. These APIs were all either problematic and/or unnecessary. In theory there could be two tokens in different modules with the same name, so nsIPK11TokenDB.findTokenByName wasn't guaranteed to return what the consumer expected it to. In general, these APIs were used by front-end code to go from a handle on the specific object in question to a string identifier and then back to a handle on the object. This was unnecessary - we can just retain the original handle. MozReview-Commit-ID: IbqLbV4wceA --HG-- extra : rebase_source : 05d39afd6bed0aa5e7694e1c79baf836edc03214
30 lines
902 B
Text
30 lines
902 B
Text
/* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIInterfaceRequestor;
|
|
interface nsIPK11Token;
|
|
|
|
/**
|
|
* This is the interface for setting and changing password
|
|
* on a PKCS11 token.
|
|
*/
|
|
[scriptable, uuid(87dbd64a-4466-474e-95f5-1ad1cee5702c)]
|
|
interface nsITokenPasswordDialogs : nsISupports
|
|
{
|
|
/**
|
|
* Brings up a dialog to set the password on a token.
|
|
*
|
|
* @param ctx A user interface context.
|
|
* @param token {nsIPK11Token} The token.
|
|
* @return true if the user canceled the dialog, false otherwise.
|
|
*/
|
|
[must_use]
|
|
boolean setPassword(in nsIInterfaceRequestor ctx, in nsIPK11Token token);
|
|
};
|
|
|
|
%{C++
|
|
#define NS_TOKENPASSWORDSDIALOG_CONTRACTID "@mozilla.org/nsTokenPasswordDialogs;1"
|
|
%}
|