Skip to content
Snippets Groups Projects
Commit 44cc784e authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa
Browse files

interop: Enable chacha20 test case

parent 5c74a7cb
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
# - CLIENT_PARAMS contains user-supplied command line parameters # - CLIENT_PARAMS contains user-supplied command line parameters
case $TESTCASE in case $TESTCASE in
versionnegotiation|handshake|transfer|retry|resumption|http3|multiconnect|zerortt) versionnegotiation|handshake|transfer|retry|resumption|http3|multiconnect|zerortt|chacha20)
: :
;; ;;
*) *)
...@@ -26,6 +26,9 @@ if [ "$ROLE" == "client" ]; then ...@@ -26,6 +26,9 @@ if [ "$ROLE" == "client" ]; then
if [ "$TESTCASE" == "versionnegotiation" ]; then if [ "$TESTCASE" == "versionnegotiation" ]; then
CLIENT_ARGS="$CLIENT_ARGS -v 0xaaaaaaaa" CLIENT_ARGS="$CLIENT_ARGS -v 0xaaaaaaaa"
fi fi
if [ "$TESTCASE" == "chacha20" ]; then
CLIENT_ARGS="$CLIENT_ARGS --ciphers=TLS_CHACHA20_POLY1305_SHA256"
fi
if [ "$TESTCASE" == "resumption" ] || [ "$TESTCASE" == "zerortt" ]; then if [ "$TESTCASE" == "resumption" ] || [ "$TESTCASE" == "zerortt" ]; then
CLIENT_ARGS="$CLIENT_ARGS --session-file session.txt --tp-file tp.txt" CLIENT_ARGS="$CLIENT_ARGS --session-file session.txt --tp-file tp.txt"
if [ "$TESTCASE" == "resumption" ]; then if [ "$TESTCASE" == "resumption" ]; then
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment