DecodeString: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 2: | Line 2: | ||
{{Shared function}} | {{Shared function}} | ||
{{New feature/item|3.0156|1.5.5|11849| | {{New feature/item|3.0156|1.5.5|11849| | ||
This function decodes | This function decodes an encoded [[string]] using the specified algorithm. The counterpart of this function is [[encodeString]]. | ||
}} | }} | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string | string decodeString ( string algorithm, string input, table options ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 13: | Line 13: | ||
*'''algorithm:''' The algorithm to use. | *'''algorithm:''' The algorithm to use. | ||
*'''input:''' The input to decode. | *'''input:''' The input to decode. | ||
*'''options :''' A table with options and other neccessary data for the algorithm, as detailed below | *'''options:''' A [[table]] with options and other neccessary data for the algorithm, as detailed below. | ||
===Options for each algorithm=== | ===Options for each algorithm=== | ||
* ''tea'': | * ''tea'' ([https://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm Tiny Encryption Algorithm]) | ||
** ''key'' | ** ''key'': A key to decode the input with. | ||
===Returns=== | ===Returns=== |
Revision as of 23:48, 1 July 2018
This function decodes an encoded string using the specified algorithm. The counterpart of this function is encodeString.
Syntax
string 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 (Tiny Encryption Algorithm)
- key: A key to decode the input with.
Returns
Returns the decoded string if successful, false otherwise.
Example
Script Example Missing Function DecodeString needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples. |
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace