wolfssl/scripts/ocsp.test

21 lines
470 B
Plaintext
Raw Permalink Normal View History

2017-05-11 14:01:41 +02:00
#!/bin/sh
# ocsp-stapling.test
server=www.globalsign.com
2018-02-19 12:29:49 +01:00
ca=certs/external/ca-globalsign-root-r3.pem
2017-05-11 14:01:41 +02:00
[ ! -x ./examples/client/client ] && echo -e "\n\nClient doesn't exist" && exit 1
# 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 -A $ca -g -o
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nClient connection failed" && exit 1
exit 0