Blame tests/testpkcs11.sc-hsm

Packit aea12f
#!/bin/sh
Packit aea12f
Packit aea12f
# Copyright (C) 2013 Nikos Mavrogiannopoulos
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
# under the terms of the GNU General Public License as published by the
Packit aea12f
# Free Software Foundation; either version 3 of the License, or (at
Packit aea12f
# your option) any later version.
Packit aea12f
#
Packit aea12f
# GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU General Public License
Packit aea12f
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit aea12f
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit aea12f
Packit aea12f
Packit aea12f
init_card () {
Packit aea12f
	PIN="$1"
Packit aea12f
	PUK=3537363231383830
Packit aea12f
	export GNUTLS_SO_PIN="${PUK}"
Packit aea12f
Packit aea12f
	echo -n "* Erasing smart card... "
Packit aea12f
	sc-hsm-tool --initialize --so-pin "${PUK}" --pin "${PIN}" --label=GnuTLS-Test >>"${TMPFILE}" 2>&1
Packit aea12f
	if test $? = 0; then
Packit aea12f
		echo ok
Packit aea12f
	else
Packit aea12f
		echo failed
Packit aea12f
		exit_error
Packit aea12f
	fi
Packit aea12f
Packit aea12f
	echo -n "* Initializing smart card... "
Packit aea12f
	TOKEN=`${P11TOOL} ${ADDITIONAL_PARAM} --list-tokens pkcs11:token=Nikos|grep URL|grep token=GnuTLS-Test|sed 's/\s*URL\: //g'`
Packit aea12f
	if test -z "${TOKEN}"; then
Packit aea12f
		echo "Could not find initialized card"
Packit aea12f
		exit_error
Packit aea12f
	fi
Packit aea12f
Packit aea12f
	${P11TOOL} ${ADDITIONAL_PARAM} --initialize "${TOKEN}" --set-so-pin "${PUK}" --set-pin "${PIN}" --label "GnuTLS-Test" >>"${TMPFILE}" 2>&1
Packit aea12f
	if test $? = 0; then
Packit aea12f
		echo ok
Packit aea12f
	else
Packit aea12f
		echo failed
Packit aea12f
		exit_error
Packit aea12f
	fi
Packit aea12f
}