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
Bounds-Related Classes
Containers
Controls-Related Classes
Core Library
Engine-Related Classes
GUI-Related Classes
Node-Related Classes
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
Rendering-Related Classes
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

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: 2017-07-03
Build: ()