security.Digest.AddBase64Data

Adds data in base64 format to the digest buffer.

Syntax

security.Digest.AddBase64Data (
   toDigest STRING )
  1. toDigest defines the base64 data string to be added to the digest buffer.

Usage

Use the method to decode the given base64 string and add the binary data to the digest buffer.

After adding all the data pieces, the buffer can be processed by calling security.Digest.DoBase64Digest or security.Digest.DoHexBinaryDigest.

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).