Open arsium opened 2 months ago
@arsium TCP client, sure. recordHeader = read first 5 bytes recordBodyLength = ((recordHeader[3] << 8) + recordHeader[4]); recordBody = read recordBodyLength bytes for your reference then feed the record to TLSContext.Process_Record
Do you have a sample code ? That would be kind
Hello,
Firstly thx for the amazing code. I was wondering if it is possible to use with TCP client or raw tcp socket ?