141 lines
4.7 KiB
C++
141 lines
4.7 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU Lesser General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; version 3. This project 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef NUKIAUTHENTICATOR_H
|
|
#define NUKIAUTHENTICATOR_H
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
#include <QBluetoothHostInfo>
|
|
|
|
#include "nukiutils.h"
|
|
#include "bluez/bluetoothgattcharacteristic.h"
|
|
|
|
class NukiAuthenticator : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum AuthenticationState {
|
|
AuthenticationStateUnauthenticated,
|
|
AuthenticationStateAuthenticated,
|
|
AuthenticationStateRequestPublicKey,
|
|
AuthenticationStateGenerateKeyPair,
|
|
AuthenticationStateSendPublicKey,
|
|
AuthenticationStateReadChallenge,
|
|
AuthenticationStateAutorization,
|
|
AuthenticationStateReadSecondChallenge,
|
|
AuthenticationStateAuthenticateData,
|
|
AuthenticationStateAuthorizationId,
|
|
AuthenticationStateAuthorizationIdConfirm,
|
|
AuthenticationStateStatus,
|
|
AuthenticationStateError
|
|
};
|
|
Q_ENUM(AuthenticationState)
|
|
|
|
explicit NukiAuthenticator(const QBluetoothHostInfo &hostInfo, BluetoothGattCharacteristic *pairingCharacteristic, QObject *parent = nullptr);
|
|
|
|
NukiUtils::ErrorCode error() const;
|
|
AuthenticationState state() const;
|
|
|
|
// Returns true if authentication end encryption data are available
|
|
bool isValid() const;
|
|
|
|
void clearSettings();
|
|
void startAuthenticationProcess();
|
|
|
|
quint32 authorizationId() const;
|
|
QByteArray authorizationIdRawData() const;
|
|
|
|
QByteArray encryptData(const QByteArray &data, const QByteArray &nonce);
|
|
QByteArray decryptData(const QByteArray &data, const QByteArray &nonce);
|
|
|
|
// Generate 32 byte nonce data
|
|
QByteArray generateNonce(const int &length = 32) const;
|
|
|
|
private:
|
|
QBluetoothHostInfo m_hostInfo;
|
|
BluetoothGattCharacteristic *m_pairingCharacteristic = nullptr;
|
|
AuthenticationState m_state = AuthenticationStateUnauthenticated;
|
|
NukiUtils::ErrorCode m_error = NukiUtils::ErrorCodeNoError;
|
|
|
|
// For handling splited notifications
|
|
NukiUtils::Command m_currentReceivingCommand = NukiUtils::CommandRequestData;
|
|
QByteArray m_currentReceivingData;
|
|
int m_currentReceivingExpectedCount = 0;
|
|
int m_currentReceivingCurrentCount = 0;
|
|
|
|
// For development debugging
|
|
bool m_debug = false;
|
|
|
|
// Local data
|
|
QByteArray m_privateKey;
|
|
QByteArray m_publicKey;
|
|
QByteArray m_sharedKey;
|
|
QByteArray m_authenticator;
|
|
QByteArray m_nonce;
|
|
QByteArray m_uuid;
|
|
QByteArray m_authorizationIdRawData;
|
|
quint32 m_authorizationId = 0;
|
|
|
|
// Nuki data
|
|
QByteArray m_publicKeyNuki;
|
|
QByteArray m_nonceNuki;
|
|
|
|
// State machine
|
|
void setState(AuthenticationState state);
|
|
void resetExpectedData(NukiUtils::Command command = NukiUtils::CommandRequestData, int expectedCount = 1);
|
|
|
|
// Helper methods
|
|
bool createAuthenticator(const QByteArray content);
|
|
|
|
// State action methods
|
|
void requestPublicKey();
|
|
void sendPublicKey();
|
|
void generateKeyPair();
|
|
void sendAuthorizationAuthenticator();
|
|
void sendAuthenticateData();
|
|
void sendAuthoizationIdConfirm();
|
|
|
|
// Storage
|
|
void saveData();
|
|
void loadData();
|
|
|
|
signals:
|
|
void errorOccured(NukiUtils::ErrorCode error);
|
|
void stateChanged(AuthenticationState state);
|
|
void authenticationProcessFinished(bool success);
|
|
|
|
private slots:
|
|
void onPairingDataCharacteristicChanged(const QByteArray &value);
|
|
|
|
};
|
|
|
|
#endif // NUKIAUTHENTICATOR_H
|