...
Use the functions described below to generates a checksum for a supplied argument.
cksumReset
Resets the cksum info and prepare to start new cksum calculation.
Code Block |
---|
void cksumReset() |
cksumUpdate
Updates the cksum using the specified array of bytes.
...
Parameter | Description |
---|---|
| Any bytearray |
Returns | Nothing |
cksumResult
Gets the result of cksum (using all data that has been entered into cksumUpdate). Returns an unsigned 32 bit integer (as a long).
Code Block |
---|
long cksumResult() |
cksumLength
Gets the total length of all data that has been entered into cksumUpdate.
Code Block |
---|
long cksumLength() |
cksum Example
Info | ||
---|---|---|
| ||
Simple APL code (Disk_1 is the input agent in the workflow)
|
crc32
Function that computes the CRC-32 of supplied argument.
...