2008-06-19 04:28:09 +00:00
|
|
|
--- a/mac.c
|
|
|
|
+++ b/mac.c
|
2012-04-26 12:31:34 +00:00
|
|
|
@@ -67,8 +67,10 @@ struct {
|
|
|
|
#endif
|
2007-10-02 22:00:29 +00:00
|
|
|
{ "hmac-md5", SSH_EVP, EVP_md5, 0, -1, -1 },
|
|
|
|
{ "hmac-md5-96", SSH_EVP, EVP_md5, 96, -1, -1 },
|
2006-11-25 22:04:23 +00:00
|
|
|
+#ifndef OPENSSL_NO_RIPEMD
|
2007-10-02 22:00:29 +00:00
|
|
|
{ "hmac-ripemd160", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
|
|
|
|
{ "hmac-ripemd160@openssh.com", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
|
2006-11-25 22:04:23 +00:00
|
|
|
+#endif
|
2007-10-02 22:00:29 +00:00
|
|
|
{ "umac-64@openssh.com", SSH_UMAC, NULL, 0, 128, 64 },
|
|
|
|
{ NULL, 0, NULL, 0, -1, -1 }
|
2006-11-25 22:04:23 +00:00
|
|
|
};
|