blob: e10760565c13b970ad39e2a25ed1e5ff0c24b78e (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#! /bin/bash
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
########################################################################
#
# tests/ec/ectest.sh
#
# needs to work on all Unix and Windows platforms
#
# special strings
# ---------------
# FIXME ... known problems, search for this string
# NOTE .... unexpected behavior
#
########################################################################
############################## ectest_init #############################
# local shell function to initialize this script
########################################################################
ectest_init()
{
SCRIPTNAME="ectest.sh"
if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ] ; then
cd ../common
. ./init.sh
fi
SCRIPTNAME="ectest.sh"
html_head "freebl and pk11 ectest tests"
}
ectest_cleanup()
{
html "</TABLE><BR>"
cd ${QADIR}
. common/cleanup.sh
}
ectest_genkeydb_test()
{
certutil -N -d "${HOSTDIR}" -f "${R_PWFILE}" 2>&1
if [ $? -ne 0 ]; then
return $?
fi
curves=( \
"curve25519" \
"secp256r1" \
"secp384r1" \
"secp521r1" \
)
for curve in "${curves[@]}"; do
echo "Test $curve key generation using certutil ..."
certutil -G -d "${HOSTDIR}" -k ec -q $curve -f "${R_PWFILE}" -z ${NOISE_FILE}
if [ $? -ne 0 ]; then
html_failed "ec test certutil keygen - $curve"
else
html_passed "ec test certutil keygen - $curve"
fi
done
echo "Test sect571r1 key generation using certutil that should fail because it's not implemented ..."
certutil -G -d "${HOSTDIR}" -k ec -q sect571r1 -f "${R_PWFILE}" -z ${NOISE_FILE}
if [ $? -eq 0 ]; then
html_failed "ec test certutil keygen - $curve"
else
html_passed "ec test certutil keygen - $curve"
fi
}
ectest_init
ectest_genkeydb_test
# TODO: expose individual tests and failures instead of overall
if [ -f ${BINDIR}/fbectest ]; then
FB_ECTEST_OUT=$(fbectest -n -d 2>&1)
FB_ECTEST_OUT=`echo $FB_ECTEST_OUT | grep -i 'not okay\|Assertion failure'`
if [ -n "$FB_ECTEST_OUT" ] ; then
html_failed "freebl ec tests"
else
html_passed "freebl ec tests"
fi
fi
if [ -f ${BINDIR}/pk11ectest ]; then
PK11_ECTEST_OUT=$(pk11ectest -n -d 2>&1)
PK11_ECTEST_OUT=`echo $PK11_ECTEST_OUT | grep -i 'not okay\|Assertion failure'`
if [ -n "$PK11_ECTEST_OUT" ] ; then
html_failed "pk11 ec tests"
else
html_passed "pk11 ec tests"
fi
fi
ectest_cleanup
|