mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Consistent naming scheme for hash type and digest.
This commit is contained in:
parent
ce101f5ad2
commit
7b86b294c9
11 changed files with 154 additions and 154 deletions
|
@ -215,10 +215,10 @@ bool HttpResponseCommand::executeInternal()
|
|||
eoi = checksums.end(); i != eoi; ++i) {
|
||||
if(getDownloadContext()->getChecksumHashAlgo().empty()) {
|
||||
A2_LOG_DEBUG(fmt("Setting digest: type=%s, digest=%s",
|
||||
(*i).getAlgo().c_str(),
|
||||
(*i).getMessageDigest().c_str()));
|
||||
getDownloadContext()->setChecksumHashAlgo((*i).getAlgo());
|
||||
getDownloadContext()->setChecksum((*i).getMessageDigest());
|
||||
(*i).getHashType().c_str(),
|
||||
(*i).getDigest().c_str()));
|
||||
getDownloadContext()->setChecksumHashAlgo((*i).getHashType());
|
||||
getDownloadContext()->setChecksum((*i).getDigest());
|
||||
break;
|
||||
} else {
|
||||
if(checkChecksum(getDownloadContext(), *i)) {
|
||||
|
@ -559,8 +559,8 @@ bool HttpResponseCommand::checkChecksum
|
|||
(const SharedHandle<DownloadContext>& dctx,
|
||||
const Checksum& checksum)
|
||||
{
|
||||
if(dctx->getChecksumHashAlgo() == checksum.getAlgo()) {
|
||||
if(dctx->getChecksum() == checksum.getMessageDigest()) {
|
||||
if(dctx->getChecksumHashAlgo() == checksum.getHashType()) {
|
||||
if(dctx->getChecksum() == checksum.getDigest()) {
|
||||
A2_LOG_INFO("Valid hash found in Digest header field.");
|
||||
return true;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue