Alternative TLS implementation in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run.sh 296 B

12345678
  1. #! /bin/sh
  2. set -e
  3. /boringssl/build/tool/bssl client -grease -min-version tls1.3 -max-version tls1.3 \
  4. -session-out /session -connect "$@" < /httpreq.txt
  5. exec /boringssl/build/tool/bssl client -grease -min-version tls1.3 -max-version tls1.3 \
  6. -session-in /session -connect "$@" < /httpreq.txt