diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-26 13:39:44 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-26 13:39:44 +0100 |
commit | 226d4ec4a7bc14fc599795844c0ecac2faa8d194 (patch) | |
tree | 617371f8fa3dd4fe64fbdb15eb0eecb8d1917b4b /package/openssh/patches/patch-digest-openssl_c | |
parent | c5cbce58aafc30b7269c978c462e1daed89b57e0 (diff) | |
parent | 3f794fad83e51a090191803aa54f4a7fe0d5a2ef (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/openssh/patches/patch-digest-openssl_c')
-rw-r--r-- | package/openssh/patches/patch-digest-openssl_c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/openssh/patches/patch-digest-openssl_c b/package/openssh/patches/patch-digest-openssl_c new file mode 100644 index 000000000..dc8aeb4f6 --- /dev/null +++ b/package/openssh/patches/patch-digest-openssl_c @@ -0,0 +1,12 @@ +--- openssh-6.6p1.orig/digest-openssl.c 2014-02-04 01:25:45.000000000 +0100 ++++ openssh-6.6p1/digest-openssl.c 2014-03-24 13:42:01.000000000 +0100 +@@ -44,7 +44,9 @@ struct ssh_digest { + /* NB. Indexed directly by algorithm number */ + const struct ssh_digest digests[] = { + { SSH_DIGEST_MD5, "MD5", 16, EVP_md5 }, ++#ifndef OPENSSL_NO_RIPEMD + { SSH_DIGEST_RIPEMD160, "RIPEMD160", 20, EVP_ripemd160 }, ++#endif + { SSH_DIGEST_SHA1, "SHA1", 20, EVP_sha1 }, + #ifdef HAVE_EVP_SHA256 /* XXX replace with local if missing */ + { SSH_DIGEST_SHA256, "SHA256", 32, EVP_sha256 }, |