CkByteData Java Reference Documentation
CkByteData
Current Version: 10.0.0
Represents a chunk of byte data and provides methods for accessing it, adding to it, or saving and loading from files.
Object Creation
CkByteData obj = new CkByteData();
Properties
SecureClear
void put_SecureClear(boolean newVal);
If set to true, then memory is always first overwritten with zero bytes prior to deallocation. The default value of this property is false.
topMethods
append
Appends byte data to the data already contained in the object.
topappend2
appendChar
Appends a single byte.
topappendCharN
Appends a single char N times. The equivalent of calling appendChar N times.
topappendEncoded
Appends binary data from an encoded string. The encoding can be specified as "hex", "base64", "url", "quoted-printable", "modBase64", "base58", or "base32". The input string is decoded from the specified encoding and the binary data is appended to the calling object's content.
topappendFile
Opens a file for binary read, appends the file contents, and closes the file.
topappendInt
Appends a 32-bit signed integer (4 bytes) to the data already contained in the object. littleEndian determines whether the big endian or little endian byte ordering is used.
topappendRandom
Appends numBytes random bytes to the data already contained within the object.
topappendRange
Appends a range of bytes from byteData to the data contained withing the caller. The first byte is at index 0.
topappendShort
Appends a 16-bit signed integer (2 bytes) to the data already contained in the object. littleEndian determines whether the big endian or little endian byte ordering is used.
topappendStr
Appends a null-terminated string to the data, without including the terminating null.
topbeginsWith
Returns true if the caller's data begins with the exact bytes contained within byteDataObj.
topbeginsWith2
Returns true if the caller's data begins with specified bytes.
topbyteSwap4321
4321 byte swaps the data contained within the object.
topclear
Clears the CkByteData object of all data. The internal memory is deallocated. To clear without deallocating, call dropData instead.
topdropData
Sets the size of the data to 0. Does not deallocate the existing internal buffer. (This is a fast way of "clearing" the CkByteData object, such that the existing data remains in memory and is overwritten on the next append.)
If the SecureClear property is set to true, then the internal memory buffer is zeroed out before resetting the size to 0.
topencode
Encodes binary data according to the encoding requested. The encoding can be specified as "hex", "base64", "url", "quoted-printable", "modBase64", "base58", "base32", "qp-
ensureBuffer
This method can be called to help optimize internal memory re-allocation. If, for example, many calls will be made to append data, and the total size is approximately known, then this method can be called to pre-allocate the internal buffer to the expected total size.
If the internal buffer is already larger than the expectedNumBytes then nothing happens. The existing internal buffer is kept.
Returns true for success, false for failure.
topequals
Returns true if compareBytes contains exactly the same content as the caller. Otherwise returns false.
topequals2
Returns true if the bytes pointed to by pCompareBytes contains exactly the same content as the caller. Otherwise returns false.
topfindBytes
Locates the first occurrence of the bytes contained in byteDataObj and returns the index of where these bytes occur in the caller's data. Returns -1 if not found.
topfindBytes2
Locates the first occurrence of the specified bytes and returns the index of where these bytes occur in the caller's data. Returns -1 if not found.
topgetByte
Returns the Nth byte of the binary data. The 1st byte is at index 0.
topgetChar
Returns the Nth byte of the binary content as a "char". The 1st byte is at index 0.
topgetData
Returns a pointer to the internal buffer. Be careful with this method because if additional data is appended, the data within the object may be relocated and the pointer may cease to be valid.
getDataAt
Same as getData, except it gets a pointer to the data at a byte offset. (0 = the start of buffer)
topgetInt
Returns the 4-byte integer located at a specific byte index.
topgetRange
Copies a range of bytes to a separate internal memory buffer and returns the pointer to the bytes. The returned pointer is only valid while the object exists. Also, any subsequent calls to getRange, getRangeStr, or to_s will invalidate the buffer.
topgetSize
Returns the number of bytes in the data buffer.
topis7bit
Returns true if all the bytes are in the range 0x00 to 0x7F.
toploadFile
Equivalent to clear() followed by appendFile().
toppad
Pads the data to a multiple of the blockSize using a cryptographic padding scheme specified by paddingScheme. The possible integer values for paddingScheme are the same as those listed for the PaddingScheme property of the CkCrypt2 class.
topremoveChunk
Removes (discards) a range from the data.
topreplaceChar
Replaces all occurrences of existingByteValue with replacementByteValue.
topsaveFile
Saves the byte data to a file. If the file already exists, it will be overwritten.
topshorten
Discards N bytes from the end of the data.
topto_ws
To be documented soon...
topunpad
Unpads the data from a multiple of the blockSize to the original data size using a cryptographic padding scheme specified by paddingScheme. The possible integer values for paddingScheme are the same as those listed for the PaddingScheme property of the CkCrypt2 class.
top