aboutsummaryrefslogtreecommitdiff
path: root/dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'dns.c')
-rw-r--r--dns.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/dns.c b/dns.c
index 939241440777..e8693cee8313 100644
--- a/dns.c
+++ b/dns.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dns.c,v 1.44 2023/03/10 04:06:21 dtucker Exp $ */
+/* $OpenBSD: dns.c,v 1.46 2025/08/29 03:50:38 djm Exp $ */
/*
* Copyright (c) 2003 Wesley Griffin. All rights reserved.
@@ -88,18 +88,12 @@ dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
case KEY_RSA:
*algorithm = SSHFP_KEY_RSA;
break;
- case KEY_DSA:
- *algorithm = SSHFP_KEY_DSA;
- break;
case KEY_ECDSA:
*algorithm = SSHFP_KEY_ECDSA;
break;
case KEY_ED25519:
*algorithm = SSHFP_KEY_ED25519;
break;
- case KEY_XMSS:
- *algorithm = SSHFP_KEY_XMSS;
- break;
default:
*algorithm = SSHFP_KEY_RESERVED; /* 0 */
}