-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77fcde8
commit 964478e
Showing
19 changed files
with
816 additions
and
529 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 or (at your option) | ||
* version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "keys/YkChallengeResponseKeyCLI.h" | ||
#include "keys/drivers/YubiKey.h" | ||
|
||
#include "core/Tools.h" | ||
#include "crypto/CryptoHash.h" | ||
#include "crypto/Random.h" | ||
|
||
#include <QFile> | ||
#include <QtCore/qglobal.h> | ||
|
||
QUuid YkChallengeResponseKeyCLI::UUID("e2be77c0-c810-417a-8437-32f41d00bd1d"); | ||
|
||
YkChallengeResponseKeyCLI::YkChallengeResponseKeyCLI(int slot, | ||
bool blocking, | ||
QString messageInteraction, | ||
FILE* outputDescriptor) | ||
: ChallengeResponseKey(UUID) | ||
, m_slot(slot) | ||
, m_blocking(blocking) | ||
, m_messageInteraction(messageInteraction) | ||
, m_out(outputDescriptor) | ||
{ | ||
} | ||
|
||
QByteArray YkChallengeResponseKeyCLI::rawKey() const | ||
{ | ||
return m_key; | ||
} | ||
|
||
/** | ||
* Assumes yubikey()->init() was called | ||
*/ | ||
bool YkChallengeResponseKeyCLI::challenge(const QByteArray& c) | ||
{ | ||
return challenge(c, 2); | ||
} | ||
|
||
bool YkChallengeResponseKeyCLI::challenge(const QByteArray& challenge, unsigned int retries) | ||
{ | ||
QTextStream out(m_out, QIODevice::WriteOnly); | ||
do { | ||
--retries; | ||
|
||
if (m_blocking) { | ||
out << m_messageInteraction << endl; | ||
} | ||
YubiKey::ChallengeResult result = YubiKey::instance()->challenge(m_slot, m_blocking, challenge, m_key); | ||
if (result == YubiKey::SUCCESS) { | ||
return true; | ||
} | ||
} while (retries > 0); | ||
|
||
return false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 or (at your option) | ||
* version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef KEEPASSX_YK_CHALLENGERESPONSEKEYCLI_H | ||
#define KEEPASSX_YK_CHALLENGERESPONSEKEYCLI_H | ||
|
||
#include "core/Global.h" | ||
#include "keys/ChallengeResponseKey.h" | ||
#include "keys/drivers/YubiKey.h" | ||
|
||
#include <QObject> | ||
#include <QTextStream> | ||
|
||
class YkChallengeResponseKeyCLI : public QObject, public ChallengeResponseKey | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
static QUuid UUID; | ||
|
||
explicit YkChallengeResponseKeyCLI(int slot, | ||
bool blocking, | ||
QString messageInteraction, | ||
FILE* outputDescriptor); | ||
|
||
QByteArray rawKey() const override; | ||
bool challenge(const QByteArray& challenge) override; | ||
bool challenge(const QByteArray& challenge, unsigned int retries); | ||
|
||
private: | ||
QByteArray m_key; | ||
int m_slot; | ||
bool m_blocking; | ||
QString m_messageInteraction; | ||
FILE* m_out; | ||
}; | ||
|
||
#endif // KEEPASSX_YK_CHALLENGERESPONSEKEYCLI_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.