forked from OpenSC/libp11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsa-check-privkey.softhsm
executable file
·47 lines (38 loc) · 1.7 KB
/
rsa-check-privkey.softhsm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# Copyright (C) 2015 Nikos Mavrogiannopoulos
# Copyright (C) 2019 Anderson Toshiyuki Sasaki
# Copyright (C) 2019 Red Hat, Inc.
# Copyright (C) 2021 Uri Blumenthal, MIT
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
outdir="output.$$"
# Load common test functions
. ${srcdir}/rsa-no-pubkey.sh
sed -e "s|@MODULE_PATH@|${MODULE}|g" -e "s|@ENGINE_PATH@|../src/.libs/pkcs11.so|g" <"${srcdir}/engines.cnf.in" >"${outdir}/engines.cnf"
export OPENSSL_ENGINES="../src/.libs/"
PRIVATE_KEY="pkcs11:token=libp11-test;id=%01%02%03%04;object=server-key;type=private;pin-value=1234"
CERTIFICATE="${outdir}/rsa-cert.pem"
CERTIFICATE_URL="pkcs11:token=libp11-test;id=%01%02%03%04;object=server-key;type=cert;pin-value=1234"
./check-privkey ${CERTIFICATE} ${PRIVATE_KEY} ${MODULE} "${outdir}/engines.cnf"
if test $? != 0;then
echo "The private key loading couldn't get the public key from the certificate"
exit 1;
fi
./check-privkey ${CERTIFICATE_URL} ${PRIVATE_KEY} ${MODULE} "${outdir}/engines.cnf"
if test $? != 0;then
echo "The private key loading couldn't get the public key from the certificate URL"
exit 1;
fi
rm -rf "$outdir"
exit 0