Hash

From Multi Theft Auto: Wiki
Revision as of 14:10, 10 August 2014 by Jaysds (talk | contribs)
Jump to navigation Jump to search

This function returns a hash of the specified string in the specified algorithm.

Accessories-text-editor.png Script Example Missing Function Hash needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


Syntax

string hash ( string algorithm, string dataToHash )

Required Arguments

  • algorithm: A string which must be one of these: "md5", "sha1", "sha224", "sha256", "sha384", "sha512"
  • dataToHash: A string of the data to hash.

Returns

Returns the hash of the data, false if an invalid argument was used.

Example

--Explain what the code does

-- Add example

See Also