DecodeString: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(decodeString)
 
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Shared function}}
{{Shared function}}
{{New feature/item|3.0160|1.6|11849|
{{New feature/item|3.0156|1.5.5|11849|
This function decodes a data string using a specified algorithm.
This function decodes a data string using a specified algorithm.
}}
}}

Revision as of 23:40, 1 July 2018

This function decodes a data string using a specified algorithm.

Syntax

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

Required Arguments

  • algorithm: The algorithm to use.
  • input: The input to decode.
  • 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-decode the input with

Returns

Returns the decoded string if successful, false otherwise.

Example

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

Before submitting check out Editing Guidelines Script Examples.


See Also