mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Remove ENABLE_MESSAGE_DIGEST, since we got the internal md, always
This commit is contained in:
parent
befd799d17
commit
010131161e
55 changed files with 65 additions and 399 deletions
|
@ -12,9 +12,7 @@
|
|||
#include "ByteArrayDiskWriter.h"
|
||||
#include "SinkStreamFilter.h"
|
||||
#include "MockSegment.h"
|
||||
#ifdef ENABLE_MESSAGE_DIGEST
|
||||
# include "MessageDigest.h"
|
||||
#endif // ENABLE_MESSAGE_DIGEST
|
||||
#include "MessageDigest.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -70,13 +68,11 @@ void GZipDecodingStreamFilterTest::testTransform()
|
|||
filter_->transform(writer_, segment_, buf, in.gcount());
|
||||
}
|
||||
CPPUNIT_ASSERT(filter_->finished());
|
||||
#ifdef ENABLE_MESSAGE_DIGEST
|
||||
std::string data = writer_->getString();
|
||||
std::shared_ptr<MessageDigest> sha1(MessageDigest::sha1());
|
||||
sha1->update(data.data(), data.size());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("8b577b33c0411b2be9d4fa74c7402d54a8d21f96"),
|
||||
util::toHex(sha1->digest()));
|
||||
#endif // ENABLE_MESSAGE_DIGEST
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue