mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Move FileKey::isHex() to Tools.
This commit is contained in:
parent
ce0007acd2
commit
6eebd95de1
@ -103,4 +103,15 @@ QString imageReaderFilter()
|
|||||||
return formatsStringList.join(" ");
|
return formatsStringList.join(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isHex(const QByteArray& ba)
|
||||||
|
{
|
||||||
|
Q_FOREACH (char c, ba) {
|
||||||
|
if ( !( (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F') ) ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Tools
|
} // namespace Tools
|
||||||
|
@ -31,6 +31,7 @@ bool hasChild(const QObject* parent, const QObject* child);
|
|||||||
bool readAllFromDevice(QIODevice* device, QByteArray& data);
|
bool readAllFromDevice(QIODevice* device, QByteArray& data);
|
||||||
QDateTime currentDateTimeUtc();
|
QDateTime currentDateTimeUtc();
|
||||||
QString imageReaderFilter();
|
QString imageReaderFilter();
|
||||||
|
bool isHex(const QByteArray& ba);
|
||||||
|
|
||||||
} // namespace Tools
|
} // namespace Tools
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include <QtCore/QFile>
|
#include <QtCore/QFile>
|
||||||
#include <QtCore/QXmlStreamReader>
|
#include <QtCore/QXmlStreamReader>
|
||||||
|
|
||||||
|
#include "core/Tools.h"
|
||||||
#include "crypto/CryptoHash.h"
|
#include "crypto/CryptoHash.h"
|
||||||
#include "crypto/Random.h"
|
#include "crypto/Random.h"
|
||||||
|
|
||||||
@ -233,7 +234,7 @@ bool FileKey::loadHex(QIODevice* device)
|
|||||||
|
|
||||||
QByteArray data = device->readAll();
|
QByteArray data = device->readAll();
|
||||||
|
|
||||||
if (!isHex(data)) {
|
if (!Tools::isHex(data)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -262,14 +263,3 @@ bool FileKey::loadHashed(QIODevice* device)
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FileKey::isHex(const QByteArray& ba)
|
|
||||||
{
|
|
||||||
Q_FOREACH (char c, ba) {
|
|
||||||
if ( !( (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F') ) ) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
@ -42,7 +42,6 @@ private:
|
|||||||
bool loadBinary(QIODevice* device);
|
bool loadBinary(QIODevice* device);
|
||||||
bool loadHex(QIODevice* device);
|
bool loadHex(QIODevice* device);
|
||||||
bool loadHashed(QIODevice* device);
|
bool loadHashed(QIODevice* device);
|
||||||
static bool isHex(const QByteArray& ba);
|
|
||||||
|
|
||||||
QByteArray m_key;
|
QByteArray m_key;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user