Modules/hashing/alder32
From Multi Theft Auto: Wiki
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 )