security.Base64.Xor

Computes the exclusive disjunction between two base64 encoded strings.

Syntax

security.Base64.Xor(
   clearVal1 STRING,
   clearVal2 STRING )
  RETURNS STRING
  1. clearVal1 defines the first string encoded in base64.
  2. 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).