DecodeString

From Multi Theft Auto: Wiki
Revision as of 13:30, 18 February 2018 by Necktrox (talk | contribs) (decodeString)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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