bde502171b
git-svn-id: svn://svn.openwrt.org/openwrt/packages@11535 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
459 B
Diff
14 lines
459 B
Diff
--- a/mac.c
|
|
+++ b/mac.c
|
|
@@ -59,8 +59,10 @@
|
|
{ "hmac-sha1-96", SSH_EVP, EVP_sha1, 96, -1, -1 },
|
|
{ "hmac-md5", SSH_EVP, EVP_md5, 0, -1, -1 },
|
|
{ "hmac-md5-96", SSH_EVP, EVP_md5, 96, -1, -1 },
|
|
+#ifndef OPENSSL_NO_RIPEMD
|
|
{ "hmac-ripemd160", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
|
|
{ "hmac-ripemd160@openssh.com", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
|
|
+#endif
|
|
{ "umac-64@openssh.com", SSH_UMAC, NULL, 0, 128, 64 },
|
|
{ NULL, 0, NULL, 0, -1, -1 }
|
|
};
|