EncodeString: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(encodeString)
 
mNo edit summary
Line 20: Line 20:


===Returns===
===Returns===
Returns the encoded string if hashing was successful, ''false'' otherwise.
Returns the encoded string if successful, ''false'' otherwise.


==Example==
==Example==

Revision as of 13:30, 18 February 2018

This function encodes a string using a specified algorithm.

Syntax

string|false encodeString ( string algorithm, string input, table options )  

Required Arguments

  • algorithm: The algorithm to use.
  • input: The input to encode.
  • options : A table with options and other neccessary data for the algorithm, as detailed below

Options for each algorithm

  • tea:
    • key (string) A key to tea-encode the input with

Returns

Returns the encoded string if successful, false otherwise.

Example

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

Before submitting check out Editing Guidelines Script Examples.


See Also