mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 09:57:14 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
99 lines
1.9 KiB
C++
99 lines
1.9 KiB
C++
//
|
|
// DigestEngine.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: Crypt
|
|
// Module: DigestEngine
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/DigestEngine.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
namespace Poco
|
|
{
|
|
|
|
DigestEngine::DigestEngine()
|
|
{
|
|
}
|
|
|
|
|
|
DigestEngine::~DigestEngine()
|
|
{
|
|
}
|
|
|
|
|
|
std::string DigestEngine::digestToHex(const Digest& bytes)
|
|
{
|
|
static const char digits[] = "0123456789abcdef";
|
|
std::string result;
|
|
result.reserve(bytes.size() * 2);
|
|
for (auto b: bytes)
|
|
{
|
|
result += digits[(b >> 4) & 0xF];
|
|
result += digits[b & 0xF];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
DigestEngine::Digest DigestEngine::digestFromHex(const std::string& digest)
|
|
{
|
|
if (digest.size() % 2 != 0)
|
|
throw DataFormatException();
|
|
Digest result;
|
|
result.reserve(digest.size() / 2);
|
|
for (std::size_t i = 0; i < digest.size(); ++i)
|
|
{
|
|
int c = 0;
|
|
// first upper 4 bits
|
|
if (digest[i] >= '0' && digest[i] <= '9')
|
|
c = digest[i] - '0';
|
|
else if (digest[i] >= 'a' && digest[i] <= 'f')
|
|
c = digest[i] - 'a' + 10;
|
|
else if (digest[i] >= 'A' && digest[i] <= 'F')
|
|
c = digest[i] - 'A' + 10;
|
|
else
|
|
throw DataFormatException();
|
|
c <<= 4;
|
|
++i;
|
|
if (digest[i] >= '0' && digest[i] <= '9')
|
|
c += digest[i] - '0';
|
|
else if (digest[i] >= 'a' && digest[i] <= 'f')
|
|
c += digest[i] - 'a' + 10;
|
|
else if (digest[i] >= 'A' && digest[i] <= 'F')
|
|
c += digest[i] - 'A' + 10;
|
|
else
|
|
throw DataFormatException();
|
|
|
|
result.push_back(static_cast<unsigned char>(c));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
bool DigestEngine::constantTimeEquals(const Digest& d1, const Digest& d2)
|
|
{
|
|
if (d1.size() != d2.size()) return false;
|
|
|
|
int result = 0;
|
|
Digest::const_iterator it1 = d1.begin();
|
|
Digest::const_iterator it2 = d2.begin();
|
|
Digest::const_iterator end1 = d1.end();
|
|
while (it1 != end1)
|
|
{
|
|
result |= *it1++ ^ *it2++;
|
|
}
|
|
return result == 0;
|
|
}
|
|
|
|
|
|
} // namespace Poco
|
|
|