This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Core Library
Containers
Engine Classes
Node-Related Classes
Rendering-Related Classes
Physics-Related Classes
Bounds-Related Classes
GUI-Related Classes
Controls-Related Classes
Pathfinding-Related Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Checksum Class (C++)

Unigine Checksum.

To use this class, include the UnigineChecksum.h file.

Unigine::Checksum Class

Members


static int CRC32 (const void * data, int size)

Calculates the 32-bit CRC checksum.

Arguments

  • const void * data - The input data pointer.
  • int size - The input data size in bytes.

Return value

The 32-bit CRC checksum.

static int MD5 (const void * data, int size)

Calculates the 32-bit MD5 checksum.

Arguments

  • const void * data - The input data pointer.
  • int size - The input data size in bytes.

Return value

The 32-bit MD5 checksum.

static void MD5 (unsigned int * value, const void * data, int size)

Calculates the 128-bit MD5 checksum.

Arguments

  • unsigned int * value - The 128-bit MD5 checksum (array of 4 unsigned int elements).
  • const void * data - The input data pointer.
  • int size - The input data size in bytes.

static int SHA1 (const void * data, int size)

Calculates the 32-bit SHA1 checksum.

Arguments

  • const void * data - The input data pointer.
  • int size - The input data size in bytes.

Return value

The 32-bit SHA1 checksum.

static void SHA1 (unsigned int * value, const void * data, int size)

Calculates the 160-bit SHA1 checksum.

Arguments

  • unsigned int * value - The 160-bit SHA1 checksum (array of 5 unsigned int elements).
  • const void * data - The input data pointer.
  • int size - The input data size in bytes.
Last update: 2017-07-03
Build: ()