mirror of
https://github.com/aria2/aria2.git
synced 2024-11-24 02:23:38 +08:00
e85f9ccfd6
MessageDigestHelper is introduced in order to simplify the use of message digest. Removed repeated code. The message digest algorithm is now specified by string, like "sha1", "md5". * src/messageDigest.{h, cc} * src/MessageDigestHelper.{h, cc}: New class. * src/DefaultPieceStorage.cc * src/DefaultBtContext.{h, cc} (computeFastSet): New function. (setInfoHash): Added for unit testing. (setNumPieces): Added for unit testing. * src/DefaultBtInteractive.cc * src/BtPieceMessage.cc * src/Peer.cc * src/Checksum.h * src/message.h * src/IteratableChecksumValidator.h * src/ChunkChecksumValidator.{h, cc}: Use IteratableChecksumValidator inside it. * src/SegmentMan.{h, cc} (checkIntegrity): Removed. * src/IteratableChunkChecksumValidator.{h, cc} * src/Util.h (sha1Sum): Removed. (simpleMessageDigest): Removed. (fileChecksum): Removed. (computeFastSet): Removed. * src/ShaVisitor.cc * src/ChunkChecksum.h * src/DownloadCommand.cc Removed messageDigest virtual functions. * src/MultiDiskAdaptor.{h, cc} * src/DiskAdaptor.h * src/ByteArrayDiskWriter.h * src/DiskWriter.h * src/DiskAdaptorWriter.h * src/AbstractSingleDiskAdaptor.{h, cc} * src/AbstractDiskWriter.{h, cc} Fixed comilation error when message digest is disabled. * src/MetalinkEntry.{h, cc} * src/MetalinkRequestInfo.cc Removed srandom and random. * src/SimpleRandomizer.h Added size() virtual function to DiskAdaptor * src/MultiDiskAdaptor.h Fixed the bug that causes that files are not opened correctly in multi-file torrent. * src/TorrentRequestInfo.cc * src/MultiDiskAdaptor.cc Added SHA256 support * src/messageDigest.cc * src/Xml2MetalinkProcessor.cc Show supported message digest algorithms * src/main.cc Updated contact info. * src/main.cc
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
AC_DEFUN([AM_PATH_OPENSSL],
|
|
[
|
|
AC_ARG_WITH([openssl-prefix],
|
|
[ --with-openssl-prefix=PREFIX Prefix where OpenSSL installed (optional)],
|
|
[openssl_prefix=$withval],
|
|
[openssl_prefix=""])
|
|
|
|
if test "x$openssl_prefix" = "x"; then
|
|
openssl_prefix="/usr/local"
|
|
fi
|
|
|
|
openssl_prefix_lib=$openssl_prefix/lib
|
|
openssl_prefix_include=$openssl_prefix/include
|
|
|
|
LIBS_save=$LIBS
|
|
CPPFLAGS_save=$CPPFLAGS
|
|
|
|
LIBS="-L$openssl_prefix_lib $LIBS"
|
|
CPPFLAGS="-I$openssl_prefix_include $CPPFLAGS"
|
|
|
|
AC_CHECK_LIB([ssl], [SSL_library_init], [have_openssl=yes; LIBS="-lssl $LIBS"])
|
|
|
|
if test "x$have_openssl" = "xyes"; then
|
|
have_openssl=no
|
|
AC_CHECK_LIB([crypto], [main], [have_openssl=yes; LIBS="-lcrypto $LIBS"])
|
|
if test "x$have_openssl" = "xyes"; then
|
|
AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 if you have openssl.])
|
|
dnl check whether EVP_DigestInit_ex exists. Old openssl doesn't have it.
|
|
AC_CHECK_FUNCS([EVP_DigestInit_ex], [have_digestinit_ex=yes])
|
|
if test "x$have_digestinit_ex" = "x"; then
|
|
AC_DEFINE([HAVE_OLD_LIBSSL], [1], [Define to 1 if you have old openssl.])
|
|
fi
|
|
OPENSSL_LIBS="-L$openssl_prefix_lib -lssl -lcrypto"
|
|
OPENSSL_CFLAGS="-I$openssl_prefix_include"
|
|
AC_SUBST(OPENSSL_LIBS)
|
|
AC_SUBST(OPENSSL_CFLAGS)
|
|
dnl search for sha256 support
|
|
AC_CHECK_FUNCS([EVP_sha256])
|
|
fi
|
|
fi
|
|
|
|
LIBS=$LIBS_save
|
|
CPPFLAGS=$CPPFLAGS_save
|
|
])
|