Remove cryptoppwin submodule (#754)
Some checks failed
Android Build / x64 (release) (push) Has been cancelled
Android Build / arm64 (release) (push) Has been cancelled
HTTP Server Build / build (push) Has been cancelled
Hydra Core Build / Windows (push) Has been cancelled
Hydra Core Build / MacOS (push) Has been cancelled
Hydra Core Build / Linux (push) Has been cancelled
Hydra Core Build / Android-x64 (push) Has been cancelled
Hydra Core Build / ARM-Libretro (push) Has been cancelled
Linux AppImage Build / build (push) Has been cancelled
Linux Build / build (push) Has been cancelled
MacOS Build / MacOS-arm64 (push) Has been cancelled
MacOS Build / MacOS-x86_64 (push) Has been cancelled
MacOS Build / MacOS-Universal (push) Has been cancelled
Qt Build / Windows (push) Has been cancelled
Qt Build / MacOS-arm64 (push) Has been cancelled
Qt Build / MacOS-x86_64 (push) Has been cancelled
Qt Build / MacOS-Universal (push) Has been cancelled
Qt Build / Linux (push) Has been cancelled
Windows Build / build (push) Has been cancelled
iOS Simulator Build / build (push) Has been cancelled

This commit is contained in:
wheremyfoodat 2025-06-10 00:16:19 +03:00 committed by GitHub
parent 5591606177
commit 6182d4cfe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
198 changed files with 51291 additions and 4 deletions

View file

@ -0,0 +1,63 @@
// trunhash.h - originally written and placed in the public domain by Wei Dai
/// \file trunhash.h
/// \brief Classes for truncated hashes
#ifndef CRYPTOPP_TRUNHASH_H
#define CRYPTOPP_TRUNHASH_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
/// \brief Null hash
/// \details A null hash that conforms to HashTransformation interface
class NullHash : public HashTransformation
{
public:
void Update(const byte *input, size_t length)
{CRYPTOPP_UNUSED(input);CRYPTOPP_UNUSED(length);}
unsigned int DigestSize() const
{return 0;}
void TruncatedFinal(byte *digest, size_t digestSize)
{CRYPTOPP_UNUSED(digest);CRYPTOPP_UNUSED(digestSize);}
bool TruncatedVerify(const byte *digest, size_t digestLength)
{CRYPTOPP_UNUSED(digest);CRYPTOPP_UNUSED(digestLength);return true;}
};
/// \brief Construct new HashModule with smaller digest size from an existing one
/// \tparam T HashTransformation derived class
template <class T>
class TruncatedHashTemplate : public HashTransformation
{
public:
/// \brief Construct a TruncatedHashTemplate
TruncatedHashTemplate(T hm, unsigned int digestSize)
: m_hm(hm), m_digestSize(digestSize) {}
/// \brief Construct a TruncatedHashTemplate
TruncatedHashTemplate(const byte *key, size_t keyLength, unsigned int digestSize)
: m_hm(key, keyLength), m_digestSize(digestSize) {}
/// \brief Construct a TruncatedHashTemplate
TruncatedHashTemplate(size_t digestSize)
: m_digestSize(digestSize) {}
void Restart()
{m_hm.Restart();}
void Update(const byte *input, size_t length)
{m_hm.Update(input, length);}
unsigned int DigestSize() const {return m_digestSize;}
void TruncatedFinal(byte *digest, size_t digestSize)
{m_hm.TruncatedFinal(digest, digestSize);}
bool TruncatedVerify(const byte *digest, size_t digestLength)
{return m_hm.TruncatedVerify(digest, digestLength);}
private:
T m_hm;
unsigned int m_digestSize;
};
typedef TruncatedHashTemplate<HashTransformation &> TruncatedHashModule;
NAMESPACE_END
#endif