This page has been translated automatically.
Getting Started
Migrating to UNIGINE 2.0
C++ API Migration
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Unigine::Checksum Class

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: 03.07.2017
Build: ()