Modules/hashing/alder32

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Package-x-generic.png This function is provided by the external module hashing. You must install this module to use this function.

Calculate the alder32 hash of the given string

Syntax

string alder32( string str )

Required arguments

  • str: string of which you want to calculate the hash

Returns

String containing calculated alder32 hash of str or nil if str wasn't string

Example

Example: This calculates the hash of "hello world" and prints it in debug window

hash = alder32( "hello world" ) -- get alder32 hash of "hello world"
outputDebugString( hash )


See also