diff options
Diffstat (limited to 'regress/krl.sh')
-rw-r--r-- | regress/krl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/krl.sh b/regress/krl.sh index e18d0ec7f..c9b2e67eb 100644 --- a/regress/krl.sh +++ b/regress/krl.sh @@ -1,4 +1,4 @@ -# $OpenBSD: krl.sh,v 1.8 2019/07/25 09:17:35 dtucker Exp $ +# $OpenBSD: krl.sh,v 1.9 2019/11/01 01:55:41 djm Exp $ # Placed in the Public Domain. tid="key revocation lists" @@ -6,7 +6,7 @@ tid="key revocation lists" # Use ed25519 by default since it's fast and it's supported when building # w/out OpenSSL. Populate ktype[2-4] with the other types if supported. ktype1=ed25519; ktype2=ed25519; ktype3=ed25519; ktype4=ed25519 -for t in `${SSH} -Q key-plain`; do +for t in `${SSH} -Q key-plain | grep -v ^sk-`; do case "$t" in ecdsa*) ktype2=ecdsa ;; ssh-rsa) ktype3=rsa ;; |