diff options
author | Timothy Pearson <[email protected]> | 2015-09-14 20:46:15 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-09-14 20:46:15 -0500 |
commit | 6095bc10ad5fc08d8202e3a8f05a7998253f6e6c (patch) | |
tree | 15332ae5fcab1282ff24ad1a5cdc6b3ad6e805bd /kcontrol/hwmanager/cryptpassworddlg.h | |
parent | 9556cd9e6908d6906717a89fff12b046beaeb7fd (diff) | |
download | tdebase-6095bc10ad5fc08d8202e3a8f05a7998253f6e6c.tar.gz tdebase-6095bc10ad5fc08d8202e3a8f05a7998253f6e6c.zip |
Add cryptographic card support to LUKS configuration
Diffstat (limited to 'kcontrol/hwmanager/cryptpassworddlg.h')
-rw-r--r-- | kcontrol/hwmanager/cryptpassworddlg.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kcontrol/hwmanager/cryptpassworddlg.h b/kcontrol/hwmanager/cryptpassworddlg.h index 8cec6e55b..d595c4a73 100644 --- a/kcontrol/hwmanager/cryptpassworddlg.h +++ b/kcontrol/hwmanager/cryptpassworddlg.h @@ -23,6 +23,8 @@ #include "cryptpassworddlgbase.h" +class KSSLCertificate; + /** * * Dialog to enter LUKS passwords or password files @@ -39,7 +41,7 @@ public: * Create a dialog that allows a user to enter LUKS passwords or password files * @param parent Parent widget */ - CryptPasswordDialog(TQWidget *parent, TQString passwordPrompt, TQString caption=TQString::null); + CryptPasswordDialog(TQWidget *parent, TQString passwordPrompt, TQString caption=TQString::null, bool allow_card=false, KSSLCertificate* card_cert=NULL, bool* use_card=NULL); virtual ~CryptPasswordDialog(); TQByteArray password(); @@ -53,6 +55,7 @@ private slots: private: CryptPasswordDialogBase* m_base; TQByteArray m_password; + bool* m_useCard; class CryptPasswordDialogPrivate; CryptPasswordDialogPrivate* d; |