1
0
Fork 0
cuberite-2a/src/mbedTLS++/Sha1Checksum.h

53 lines
1.1 KiB
C
Raw Normal View History

2017-09-19 08:34:08 +00:00
// Sha1Checksum.h
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator
#pragma once
#include "mbedtls/sha1.h"
/** Calculates a SHA1 checksum for data stream */
class cSha1Checksum
{
public:
typedef Byte Checksum[20]; // The type used for storing the checksum
2016-02-05 21:45:45 +00:00
cSha1Checksum(void);
2016-02-05 21:45:45 +00:00
/** Adds the specified data to the checksum */
void Update(const Byte * a_Data, size_t a_Length);
2016-02-05 21:45:45 +00:00
/** Calculates and returns the final checksum */
void Finalize(Checksum & a_Output);
2016-02-05 21:45:45 +00:00
/** Returns true if the object is accepts more input data, false if Finalize()-d (need to Restart()) */
bool DoesAcceptInput(void) const { return m_DoesAcceptInput; }
2016-02-05 21:45:45 +00:00
/** Converts a raw 160-bit SHA1 digest into a Java Hex representation
2017-08-24 09:19:40 +00:00
According to http://wiki.vg/Protocol_Encryption
*/
static void DigestToJava(const Checksum & a_Digest, AString & a_JavaOut);
2016-02-05 21:45:45 +00:00
/** Clears the current context and start a new checksum calculation */
void Restart(void);
2016-02-05 21:45:45 +00:00
protected:
/** True if the object is accepts more input data, false if Finalize()-d (need to Restart()) */
bool m_DoesAcceptInput;
2016-02-05 21:45:45 +00:00
mbedtls_sha1_context m_Sha1;
} ;