Ashasekayi (Talk | contribs) |
Ashasekayi (Talk | contribs) |
||
Line 2: | Line 2: | ||
==Members== | ==Members== | ||
− | {{ScriptFunction|string|MD5|(string input);|Calculates the MD5Sum of input and returns the result as a hexadecimal string|5 = local inputString = "An input string with data to hash."<br>local md5Hash = Space.String.MD5(inputString)<br>Space.Log(md5Hash)<br>-- prints "304f8dd8835d5fbd159299f7d07653fd" | + | {{ScriptFunction|string|MD5|(string input);|Calculates the MD5Sum of input and returns the result as a hexadecimal string|5 = local inputString = "An input string with data to hash."<br>local md5Hash = Space.String.MD5(inputString)<br>Space.Log(md5Hash)<br>-- prints "304f8dd8835d5fbd159299f7d07653fd"}} |
{{ScriptFunction|string|Base64Encode|(string input);|Converts input to Base64 and returns the result|5 = local inputString = "input to encode"<br>local baseEncodeStr = Space.String.Base64Encode(inputString)<br>Space.Log(baseEncodeStr)<br>-- prints "aW5wdXQgdG8gZW5jb2Rl"}} | {{ScriptFunction|string|Base64Encode|(string input);|Converts input to Base64 and returns the result|5 = local inputString = "input to encode"<br>local baseEncodeStr = Space.String.Base64Encode(inputString)<br>Space.Log(baseEncodeStr)<br>-- prints "aW5wdXQgdG8gZW5jb2Rl"}} | ||
{{ScriptFunction|string|Base64Encode|(byte[] input);|Converts input to Base64 and returns the result|5 = local inputByteArray = {105, 110, 112, 117, 116, 32, 116, 111, 32, 101, 110, 99, 111, 100, 101}<br>local baseEncodeByte = Space.String.Base64Encode(inputByteArray)<br>Space.Log(baseEncodeByte)<br>-- prints "aW5wdXQgdG8gZW5jb2Rl"}} | {{ScriptFunction|string|Base64Encode|(byte[] input);|Converts input to Base64 and returns the result|5 = local inputByteArray = {105, 110, 112, 117, 116, 32, 116, 111, 32, 101, 110, 99, 111, 100, 101}<br>local baseEncodeByte = Space.String.Base64Encode(inputByteArray)<br>Space.Log(baseEncodeByte)<br>-- prints "aW5wdXQgdG8gZW5jb2Rl"}} |
The SHost class represents the scripting runtime.
Calculates the MD5Sum of input and returns the result as a hexadecimal string
Converts input to Base64 and returns the result
Converts input to Base64 and returns the result
Converts input from Base64 and returns the result
Converts input to bytes using UTF8 encoding
Converts input to a UTF8 string
|