Blame tests/server-weak-keys.sh

Packit Service 991b93
#!/bin/sh
Packit Service 991b93
Packit Service 991b93
# Copyright (C) 2017 Nikos Mavrogiannopoulos
Packit Service 991b93
#
Packit Service 991b93
# Author: Nikos Mavrogiannopoulos
Packit Service 991b93
#
Packit Service 991b93
# This file is part of GnuTLS.
Packit Service 991b93
#
Packit Service 991b93
# GnuTLS is free software; you can redistribute it and/or modify it
Packit Service 991b93
# under the terms of the GNU General Public License as published by the
Packit Service 991b93
# Free Software Foundation; either version 3 of the License, or (at
Packit Service 991b93
# your option) any later version.
Packit Service 991b93
#
Packit Service 991b93
# GnuTLS is distributed in the hope that it will be useful, but
Packit Service 991b93
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 991b93
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 991b93
# General Public License for more details.
Packit Service 991b93
#
Packit Service 991b93
# You should have received a copy of the GNU General Public License
Packit Service 991b93
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit Service 991b93
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit Service 991b93
Packit Service 991b93
srcdir="${srcdir:-.}"
Packit Service 991b93
SERV="${SERV:-../src/gnutls-serv${EXEEXT}}"
Packit Service 991b93
CLI="${CLI:-../src/gnutls-cli${EXEEXT}}"
Packit Service 991b93
unset RETCODE
Packit Service 991b93
Packit Service 991b93
if ! test -x "${SERV}"; then
Packit Service 991b93
	exit 77
Packit Service 991b93
fi
Packit Service 991b93
Packit Service 991b93
if ! test -x "${CLI}"; then
Packit Service 991b93
	exit 77
Packit Service 991b93
fi
Packit Service 991b93
Packit Service 991b93
if test "${WINDIR}" != ""; then
Packit Service 991b93
	exit 77
Packit Service 991b93
fi
Packit Service 991b93
Packit Service 991b93
if ! test -z "${VALGRIND}"; then
Packit Service 991b93
	VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND} --error-exitcode=15"
Packit Service 991b93
fi
Packit Service 991b93
Packit Service 991b93
Packit Service 991b93
SERV="${SERV} -q"
Packit Service 991b93
Packit Service 991b93
. "${srcdir}/scripts/common.sh"
Packit Service 991b93
Packit Service 991b93
check_for_datefudge
Packit Service 991b93
Packit Service 991b93
echo "Checking whether a client will refuse weak but trusted keys"
Packit Service 991b93
Packit Service 991b93
KEY1=${srcdir}/certs/rsa-512.pem
Packit Service 991b93
CERT1=${srcdir}/certs/rsa-512.pem
Packit Service 991b93
Packit Service 991b93
eval "${GETPORT}"
Packit Service 991b93
launch_server $$ --echo --priority "NORMAL" --x509keyfile ${KEY1} --x509certfile ${CERT1}
Packit Service 991b93
PID=$!
Packit Service 991b93
wait_server ${PID}
Packit Service 991b93
Packit Service 991b93
timeout 1800 datefudge "2019-12-20" \
Packit Service 991b93
"${CLI}" -d 4 -p "${PORT}" localhost --x509cafile ${CERT1} --priority NORMAL:-VERS-TLS-ALL:+VERS-TLS1.2 
Packit Service 991b93
	fail ${PID} "1. handshake with RSA should have failed!"
Packit Service 991b93
Packit Service 991b93
timeout 1800 datefudge "2019-12-20" \
Packit Service 991b93
"${CLI}" -d 4 -p "${PORT}" localhost --x509cafile ${CERT1} --priority NORMAL 
Packit Service 991b93
	fail ${PID} "2. handshake with RSA should have failed!"
Packit Service 991b93
Packit Service 991b93
kill ${PID}
Packit Service 991b93
wait
Packit Service 991b93
Packit Service 991b93
exit 0