1507ec8b6a
git-svn-id: svn://svn.openwrt.org/openwrt/packages@36157 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
937 B
Diff
26 lines
937 B
Diff
diff --git a/mac.c b/mac.c
|
|
index 3f2dc6f..73d2d4e 100644
|
|
--- a/mac.c
|
|
+++ b/mac.c
|
|
@@ -68,8 +68,10 @@ struct {
|
|
#endif
|
|
{ "hmac-md5", SSH_EVP, EVP_md5, 0, 0, 0, 0 },
|
|
{ "hmac-md5-96", SSH_EVP, EVP_md5, 96, 0, 0, 0 },
|
|
+#ifndef OPENSSL_NO_RIPEMD
|
|
{ "hmac-ripemd160", SSH_EVP, EVP_ripemd160, 0, 0, 0, 0 },
|
|
{ "hmac-ripemd160@openssh.com", SSH_EVP, EVP_ripemd160, 0, 0, 0, 0 },
|
|
+#endif
|
|
{ "umac-64@openssh.com", SSH_UMAC, NULL, 0, 128, 64, 0 },
|
|
{ "umac-128@openssh.com", SSH_UMAC128, NULL, 0, 128, 128, 0 },
|
|
|
|
@@ -82,7 +84,9 @@ struct {
|
|
#endif
|
|
{ "hmac-md5-etm@openssh.com", SSH_EVP, EVP_md5, 0, 0, 0, 1 },
|
|
{ "hmac-md5-96-etm@openssh.com", SSH_EVP, EVP_md5, 96, 0, 0, 1 },
|
|
+#ifndef OPENSSL_NO_RIPEMD
|
|
{ "hmac-ripemd160-etm@openssh.com", SSH_EVP, EVP_ripemd160, 0, 0, 0, 1 },
|
|
+#endif
|
|
{ "umac-64-etm@openssh.com", SSH_UMAC, NULL, 0, 128, 64, 1 },
|
|
{ "umac-128-etm@openssh.com", SSH_UMAC128, NULL, 0, 128, 128, 1 },
|
|
|