eric7.WebBrowser.WebAuth.Fido2PasskeyEditDialog

Module implementing a dialog for editing passkey parameters.

Global Attributes

None

Classes

Fido2PasskeyEditDialog Class implementing a dialog for editing passkey parameters.

Functions

None


Fido2PasskeyEditDialog

Class implementing a dialog for editing passkey parameters.

Derived from

QDialog, Ui_Fido2PasskeyEditDialog

Class Attributes

None

Class Methods

None

Methods

Fido2PasskeyEditDialog Constructor
__updateOk Private method to update the state of the OK button.
getData Public method to get the entered data.

Static Methods

None

Fido2PasskeyEditDialog (Constructor)

Fido2PasskeyEditDialog(displayName, userName, relyingParty, parent=None)

Constructor

displayName (str)
string to be shown for this passkey
userName (str)
user name of this passkey
relyingParty (str)
relying part this passkey belongs to
parent (QWidget (optional))
reference to the parent widget (defaults to None)

Fido2PasskeyEditDialog.__updateOk

__updateOk()

Private method to update the state of the OK button.

Fido2PasskeyEditDialog.getData

getData()

Public method to get the entered data.

Return:
tuple containing the display and user names
Return Type:
tuple[str, str]
Up