
When compiling for QEMU, the gethostbyname call doesn't have access to the OS DNS. Implemented a lookup of hostname that uses the system command host. Fix for QEMU Aarch64 where 'char' is unsigned and the -1 return is being converted to 255 in wolfSSL_OPENSSL_hexchar2int(). Test TLSv1.3 with www.google.com if wolfSSL supports it. CMAC: cannot cast size_t* to word32* when big-endian. SP math all: Random prime - munge bits before moving them around for big-endian. BIO, no filesystem: Allow BIO_prinf to be used with mem BIO.
34 lines
859 B
Bash
Executable File
34 lines
859 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# google.test
|
|
|
|
server=www.google.com
|
|
|
|
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
|
|
|
|
./examples/client/client -v 3 2>&1 | grep -- 'Bad SSL version'
|
|
if [ $? -eq 0 ]; then
|
|
echo -e "\n\nClient doesn't support TLS v1.2"
|
|
exit 0
|
|
fi
|
|
|
|
# is our desired server there?
|
|
./scripts/ping.test $server 2
|
|
RESULT=$?
|
|
[ $RESULT -ne 0 ] && exit 0
|
|
|
|
# client test against the server
|
|
./examples/client/client -X -C -h $server -p 443 -g -d
|
|
RESULT=$?
|
|
[ $RESULT -ne 0 ] && echo -e "\n\nClient connection failed" && exit 1
|
|
|
|
./examples/client/client -v 4 2>&1 | grep -- 'Bad SSL version'
|
|
if [ $? -ne 0 ]; then
|
|
# client test against the server using TLS v1.3
|
|
./examples/client/client -v 4 -X -C -h $server -p 443 -g -d
|
|
RESULT=$?
|
|
[ $RESULT -ne 0 ] && echo -e "\n\nTLSv1.3 Client connection failed" && exit 1
|
|
fi
|
|
|
|
exit 0
|