projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
replace ignore-deprecated #pragma dance with _Pragma
[apt.git]
/
apt-pkg
/
contrib
/
sha2.h
diff --git
a/apt-pkg/contrib/sha2.h
b/apt-pkg/contrib/sha2.h
index 51c921dbd7af7344560a9a52b3573d2d845ccb1a..a25ad4d322065bd928a578fbdbcac2a203c1197a 100644
(file)
--- a/
apt-pkg/contrib/sha2.h
+++ b/
apt-pkg/contrib/sha2.h
@@
-14,14
+14,18
@@
#ifndef APTPKG_SHA2_H
#define APTPKG_SHA2_H
#ifndef APTPKG_SHA2_H
#define APTPKG_SHA2_H
-#include <string>
#include <cstring>
#include <cstring>
-#include <algorithm>
-#include <stdint.h>
#include "sha2_internal.h"
#include "hashsum_template.h"
#include "sha2_internal.h"
#include "hashsum_template.h"
+#ifndef APT_10_CLEANER_HEADERS
+#include <string>
+#include <algorithm>
+#include <stdint.h>
+#endif
+
+
typedef HashSumValue<512> SHA512SumValue;
typedef HashSumValue<256> SHA256SumValue;
typedef HashSumValue<512> SHA512SumValue;
typedef HashSumValue<256> SHA256SumValue;
@@
-60,10
+64,11
@@
class SHA256Summation : public SHA2SummationBase
res.Set(Sum);
return res;
};
res.Set(Sum);
return res;
};
- SHA256Summation()
+ SHA256Summation()
{
SHA256_Init(&ctx);
Done = false;
{
SHA256_Init(&ctx);
Done = false;
+ memset(&Sum, 0, sizeof(Sum));
};
};
};
};
@@
-96,6
+101,7
@@
class SHA512Summation : public SHA2SummationBase
{
SHA512_Init(&ctx);
Done = false;
{
SHA512_Init(&ctx);
Done = false;
+ memset(&Sum, 0, sizeof(Sum));
};
};
};
};