mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
31db9b541b
r=javi sr=alecf
53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
/*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 2001 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Terry Hayes <thayes@netscape.com>
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIInterfaceRequestor;
|
|
|
|
|
|
/**
|
|
* nsITokenPasswordDialogs
|
|
* This is the interface for setting and changing password
|
|
* on a PKCS11 token.
|
|
*/
|
|
[scriptable, uuid(be26b580-1dd1-11b2-9946-c598d0d07727)]
|
|
interface nsITokenPasswordDialogs : nsISupports
|
|
{
|
|
/**
|
|
* setPassword - sets the password/PIN on the named token.
|
|
* The canceled output value should be set to TRUE when
|
|
* the user (or implementation) cancels the operation.
|
|
*/
|
|
void setPassword(in nsIInterfaceRequestor ctx, in wstring tokenName,
|
|
out boolean canceled);
|
|
|
|
void getPassword(in nsIInterfaceRequestor ctx,
|
|
in wstring tokenName,
|
|
out wstring password,
|
|
out boolean canceled);
|
|
};
|
|
|
|
%{C++
|
|
#define NS_TOKENPASSWORDSDIALOG_CONTRACTID "@mozilla.org/nsTokenPasswordDialogs;1"
|
|
%}
|