1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/core/toxid.cpp

166 lines
4.4 KiB
C++
Raw Normal View History

/*
Copyright © 2015 by The qTox Project Contributors
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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 3 of the License, or
(at your option) any later version.
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
*/
2015-05-18 02:17:14 +08:00
#include "toxid.h"
#include "core.h"
2015-05-18 02:17:14 +08:00
#include <tox/tox.h>
#include <qregularexpression.h>
#define TOX_ID_PUBLIC_KEY_LENGTH 64
#define TOX_ID_NO_SPAM_LENGTH 8
#define TOX_ID_CHECKSUM_LENGTH 4
#define TOX_HEX_ID_LENGTH 2*TOX_ADDRESS_SIZE
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @class ToxId
* @brief This class represents a Tox ID.
*
* An ID is composed of 32 bytes long public key, 4 bytes long NoSpam
* and 2 bytes long checksum.
*
* e.g.
* @code
* | C7719C6808C14B77348004956D1D98046CE09A34370E7608150EAD74C3815D30 | C8BA3AB9 | BEB9
* | / |
* | / NoSpam | Checksum
* | Public Key (PK), 32 bytes, 64 characters / 4 bytes | 2 bytes
* | | 8 characters| 4 characters
* @endcode
*/
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief The default constructor. Creates an empty Tox ID.
*/
2015-05-18 02:17:14 +08:00
ToxId::ToxId()
: publicKey(), noSpam(), checkSum()
{}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief The copy constructor.
* @param other ToxId to copy
*/
2015-05-18 02:17:14 +08:00
ToxId::ToxId(const ToxId &other)
: publicKey(other.publicKey), noSpam(other.noSpam), checkSum(other.checkSum)
{}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief Create a Tox ID from QString.
*
* If the given id is not a valid Tox ID, then:
* publicKey == id and noSpam == "" == checkSum.
*
* @param id Tox ID string to convert to ToxId object
2016-07-27 06:21:22 +08:00
*/
2015-05-18 02:17:14 +08:00
ToxId::ToxId(const QString &id)
{
if (isToxId(id))
{
publicKey = id.left(TOX_ID_PUBLIC_KEY_LENGTH);
noSpam = id.mid(TOX_ID_PUBLIC_KEY_LENGTH, TOX_ID_NO_SPAM_LENGTH);
checkSum = id.right(TOX_ID_CHECKSUM_LENGTH);
2015-05-18 02:17:14 +08:00
}
else
{
publicKey = id;
}
}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief Compares, that public key equals.
* @param other Tox ID to compare.
* @return True if both Tox ID have same public keys, false otherwise.
*/
2015-05-18 02:17:14 +08:00
bool ToxId::operator==(const ToxId& other) const
{
return publicKey == other.publicKey;
}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief Compares, that only public key not equals.
* @param other Tox ID to compare.
* @return True if both Tox ID have different public keys, false otherwise.
*/
2015-05-18 02:17:14 +08:00
bool ToxId::operator!=(const ToxId &other) const
{
return publicKey != other.publicKey;
}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief Returns Tox ID converted to QString.
* @return The Tox ID as QString.
*/
2015-05-18 02:17:14 +08:00
QString ToxId::toString() const
{
return publicKey + noSpam + checkSum;
}
2016-07-27 06:21:22 +08:00
/**
2016-08-01 16:20:56 +08:00
* @brief Clears all elements of the Tox ID.
*/
2015-05-18 02:17:14 +08:00
void ToxId::clear()
{
publicKey.clear();
noSpam.clear();
checkSum.clear();
}
2016-07-27 06:21:22 +08:00
/**
* @brief Check, that id is probably a valid Tox ID.
2016-08-01 16:20:56 +08:00
* @param id Tox ID to check.
* @return True if the string can be a ToxID, false otherwise.
* @note Doesn't validate checksum.
2016-08-01 16:20:56 +08:00
*/
bool ToxId::isValidToxId(const QString& id)
2015-05-18 02:17:14 +08:00
{
const QRegularExpression hexRegExp("^[A-Fa-f0-9]+$");
return id.length() == TOX_HEX_ID_LENGTH && id.contains(hexRegExp);
}
/**
* @brief Check, that id is a valid Tox ID.
* @param id Tox ID to check.
* @return True if id is a valid Tox ID, false otherwise.
*/
bool ToxId::isToxId(const QString& id)
{
if (!isValidToxId(id))
{
return false;
}
uint32_t size = TOX_ID_PUBLIC_KEY_LENGTH + TOX_ID_NO_SPAM_LENGTH;
QString publicKeyStr = id.left(size);
QString checksumStr = id.right(TOX_ID_CHECKSUM_LENGTH);
QByteArray publicKey = QByteArray::fromHex(publicKeyStr.toLatin1());
QByteArray checksum = QByteArray::fromHex(checksumStr.toLatin1());
uint8_t check[2] = {0};
for (uint32_t i = 0; i < size / 2; i++)
{
check[i % 2] ^= publicKey.data()[i];
}
QByteArray caclulated(reinterpret_cast<char*>(check), 2);
return caclulated == checksum;
}