security.Base64.Xor
Computes the exclusive disjunction between two base64 encoded strings.
Syntax
security.Base64.Xor(
clearVal1 STRING,
clearVal2 STRING )
RETURNS STRING
- clearVal1 defines the first string encoded in base64.
- clearVal2 defines the second string encoded in base64.
Usage
Decodes the two given strings and does an exclusive disjunction between the two binary inputs. The result is returned encoded in base64.
In case of error, the method throws an exception and sets the
status
variable. Depending on the error, a human-readable description of the
problem is available in the sqlca.sqlerrm
register. See Error handling in GWS calls (status).