forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- (djm) [digest-openssl.c configure.ac] Disable RIPEMD160 if libcrypto
doesn't support it.
- Loading branch information
Showing
3 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
20140703 | ||
- (djm) [digest-openssl.c configure.ac] Disable RIPEMD160 if libcrypto | ||
doesn't support it. | ||
|
||
20140702 | ||
- OpenBSD CVS Sync | ||
- [email protected] 2014/06/13 08:26:29 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# $Id: configure.ac,v 1.576 2014/06/13 01:06:04 dtucker Exp $ | ||
# $Id: configure.ac,v 1.577 2014/07/03 01:54:19 djm Exp $ | ||
# | ||
# Copyright (c) 1999-2004 Damien Miller | ||
# | ||
|
@@ -15,7 +15,7 @@ | |
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
AC_INIT([OpenSSH], [Portable], [[email protected]]) | ||
AC_REVISION($Revision: 1.576 $) | ||
AC_REVISION($Revision: 1.577 $) | ||
AC_CONFIG_SRCDIR([ssh.c]) | ||
AC_LANG([C]) | ||
|
||
|
@@ -2512,6 +2512,14 @@ AC_CHECK_FUNCS([SHA256_Update EVP_sha256], , | |
[email protected] [email protected]" | ||
] | ||
) | ||
# Search for RIPE-MD support in OpenSSL | ||
AC_CHECK_FUNCS([EVP_ripemd160], , | ||
[unsupported_algorithms="$unsupported_algorithms \ | ||
hmac-ripemd160 | ||
[email protected] | ||
[email protected]" | ||
] | ||
) | ||
|
||
# Check complete ECC support in OpenSSL | ||
AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters