ll.XorBase64Strings

ll.XorBase64Strings (Text1: string, Text2: string) -> string

Deprecated: Please use llXorBase64 instead. Incorrectly performs an exclusive OR on two Base64 strings and returns a Base64 string. Text2 repeats if it is shorter than Text1. Retained for backwards compatibility.

Example

ll.XorBase64Strings('test', 'test')
Raw function spec json
{
  "def": "func",
  "desc": "Deprecated: Please use llXorBase64 instead.\nIncorrectly performs an exclusive OR on two Base64 strings and returns a Base64 string. Text2 repeats if it is shorter than Text1.\nRetained for backwards compatibility.",
  "energy": 10,
  "sleep": 0.3,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlXorBase64Strings",
  "private": false,
  "takesSelf": false,
  "name": "XorBase64Strings",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Text1",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Text2",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll