ac01048c5e
Similar to boringssl, reuse the NSS client image for the NSS server test against the tris client. Bump the NSS version to 3.34.1 gain support for TLS 1.3 keylogging which is useful while debugging. Adjust read check to fix intermittent NSS test failures: https://github.com/cloudflare/tls-tris/issues/58
12 lines
207 B
Bash
Executable File
12 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
PATH=/dist/OBJ-PATH/bin:$PATH
|
|
set -x
|
|
|
|
# RSA
|
|
selfserv -n rsa-server -p 1443 -d /certdb -V tls1.2:tls1.3 -v -Z &
|
|
|
|
# ECDSA
|
|
selfserv -n ecdsa-server -p 2443 -d /certdb -V tls1.2:tls1.3 -v -Z &
|
|
|
|
wait
|