summaryrefslogtreecommitdiff
path: root/regress/krl.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-02-14 10:14:51 +1100
committerDamien Miller <djm@mindrot.org>2013-02-14 10:14:51 +1100
commit2653f5c0a67c403ff14403b9aac94e6a53f6bbf9 (patch)
tree54cbcf78c12650a479913acce35c55d8c35f6a49 /regress/krl.sh
parent2f20de5e3f1c60eee3c9bda52289aff5c037dd08 (diff)
- (djm) [regress/krl.sh] Don't use ecdsa keys in environment that lack ECC.
Diffstat (limited to 'regress/krl.sh')
-rw-r--r--regress/krl.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/regress/krl.sh b/regress/krl.sh
index 46a2ad3f9..1e767f335 100644
--- a/regress/krl.sh
+++ b/regress/krl.sh
@@ -3,13 +3,19 @@
3 3
4tid="key revocation lists" 4tid="key revocation lists"
5 5
6# If we don't support ecdsa keys then this tell will be much slower.
7ECDSA=ecdsa
8if test "x$TEST_SSH_ECC" != "xyes"; then
9 $ECDSA=rsa
10fi
11
6# Do most testing with ssh-keygen; it uses the same verification code as sshd. 12# Do most testing with ssh-keygen; it uses the same verification code as sshd.
7 13
8# Old keys will interfere with ssh-keygen. 14# Old keys will interfere with ssh-keygen.
9rm -f $OBJ/revoked-* $OBJ/krl-* 15rm -f $OBJ/revoked-* $OBJ/krl-*
10 16
11# Generate a CA key 17# Generate a CA key
12$SSHKEYGEN -t ecdsa -f $OBJ/revoked-ca -C "" -N "" > /dev/null || 18$SSHKEYGEN -t $ECDSA -f $OBJ/revoked-ca -C "" -N "" > /dev/null ||
13 fatal "$SSHKEYGEN CA failed" 19 fatal "$SSHKEYGEN CA failed"
14 20
15# A specification that revokes some certificates by serial numbers 21# A specification that revokes some certificates by serial numbers
@@ -48,7 +54,7 @@ keygen() {
48 N=$1 54 N=$1
49 f=$OBJ/revoked-`printf "%04d" $N` 55 f=$OBJ/revoked-`printf "%04d" $N`
50 # Vary the keytype. We use mostly ECDSA since this is fastest by far. 56 # Vary the keytype. We use mostly ECDSA since this is fastest by far.
51 keytype=ecdsa 57 keytype=$ECDSA
52 case $N in 58 case $N in
53 2 | 10 | 510 | 1001) keytype=rsa;; 59 2 | 10 | 510 | 1001) keytype=rsa;;
54 4 | 30 | 520 | 1002) keytype=dsa;; 60 4 | 30 | 520 | 1002) keytype=dsa;;