summaryrefslogtreecommitdiffstats
path: root/digest.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-05-08 22:57:38 +0000
committerDamien Miller <djm@mindrot.org>2017-05-10 11:41:21 +1000
commit7bdb2eeb1d3c26acdc409bd94532eefa252e440b (patch)
tree0e42442f5dae31f7cd1b68bfc4bdfb1018164a04 /digest.h
parent5f02bb1f99f70bb422be8a5c2b77ef853f1db554 (diff)
upstream commit
remove hmac-ripemd160; ok dtucker Upstream-ID: 896e737ea0bad6e23327d1c127e02d5e9e9c654d
Diffstat (limited to 'digest.h')
-rw-r--r--digest.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/digest.h b/digest.h
index 3fe07346..274574d0 100644
--- a/digest.h
+++ b/digest.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: digest.h,v 1.7 2014/12/21 22:27:56 djm Exp $ */
+/* $OpenBSD: digest.h,v 1.8 2017/05/08 22:57:38 djm Exp $ */
/*
* Copyright (c) 2013 Damien Miller <djm@mindrot.org>
*
@@ -23,12 +23,11 @@
/* Digest algorithms */
#define SSH_DIGEST_MD5 0
-#define SSH_DIGEST_RIPEMD160 1
-#define SSH_DIGEST_SHA1 2
-#define SSH_DIGEST_SHA256 3
-#define SSH_DIGEST_SHA384 4
-#define SSH_DIGEST_SHA512 5
-#define SSH_DIGEST_MAX 6
+#define SSH_DIGEST_SHA1 1
+#define SSH_DIGEST_SHA256 2
+#define SSH_DIGEST_SHA384 3
+#define SSH_DIGEST_SHA512 4
+#define SSH_DIGEST_MAX 5
struct sshbuf;
struct ssh_digest_ctx;