diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /security/manager/ssl/nsIProtectedAuthThread.idl | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/manager/ssl/nsIProtectedAuthThread.idl')
-rw-r--r-- | security/manager/ssl/nsIProtectedAuthThread.idl | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/security/manager/ssl/nsIProtectedAuthThread.idl b/security/manager/ssl/nsIProtectedAuthThread.idl new file mode 100644 index 0000000000..3979797c0c --- /dev/null +++ b/security/manager/ssl/nsIProtectedAuthThread.idl @@ -0,0 +1,48 @@ +/* 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" +#include "nsIObserver.idl" +#include "nsIPKCS11Slot.idl" + +/** + * Used to communicate with the thread for logging on to a token with + * CKF_PROTECTED_AUTHENTICATION_PATH set. + */ +[scriptable, uuid(4bb27cb7-8984-4cee-8ce7-9b014c3d091b)] +interface nsIProtectedAuthThread : nsISupports +{ + /** + * login - run the thread + * A user interface implementing this interface needs to + * call this method as soon as the message to the user is + * displayed. This will trigger login operation. No user + * cancellation is possible during login operation. + * + * When the login is done, the observe method of @observer will + * be called on the UI thread with a topic of "login-finished" + * and null data and subject. + */ + [must_use] + void login(in nsIObserver observer); + + /** + * The PKCS11 slot + */ + [must_use] + readonly attribute nsIPKCS11Slot slot; + + /** + * Gets token to be logged in name. + */ + [must_use] + AString getTokenName(); +}; + +%{ C++ +// {45334489-3D30-47c6-920B-0A55A313AEBF} +#define NS_PROTECTEDAUTHTHREAD_CID \ +{ 0x45334489, 0x3d30, 0x47c6, { 0x92, 0x0b, 0x0a, 0x55, 0xa3, 0x13, 0xae, 0xbf } } +#define NS_PROTECTEDAUTHTHREAD_CONTRACTID "@mozilla.org/security/protectedauththread;1" +%} |