Internet Direct (Indy) Version 9.0.2 Beta
TByteArray
Represents byte array data used in SSL communications.

TByteArray = record
  Length: Integer;
  Data: PChar;
  end;
Description
TByteArray is a record type that represents byte array data used in SSL communications.

Length is an Integer member that indicates the number of bytes in Data.

Data is a PChar member that contains the byte values for the TByteArray.