diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-05-08 09:18:39 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-05-08 09:18:39 +0200 |
commit | caa8a9f1e777f351b911dc8c30a858a5f026fca3 (patch) | |
tree | a9cb3ce115a832245cd528237cb238c38bca86bc /apt-pkg/contrib/hashes.h | |
parent | ff94be47f5dbdcf99cea23fad8c9b992a8e5a67e (diff) | |
parent | b41713efc8f37d62f078bea850ef0a74e0af0103 (diff) |
Merge remote-tracking branch 'upstream/debian/sid' into bugfix/update-progress-reporting
Diffstat (limited to 'apt-pkg/contrib/hashes.h')
-rw-r--r-- | apt-pkg/contrib/hashes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/contrib/hashes.h b/apt-pkg/contrib/hashes.h index 5cd1af03b..7a62f8a8f 100644 --- a/apt-pkg/contrib/hashes.h +++ b/apt-pkg/contrib/hashes.h @@ -78,6 +78,8 @@ class Hashes SHA256Summation SHA256; SHA512Summation SHA512; + static const int UntilEOF = 0; + inline bool Add(const unsigned char *Data,unsigned long long Size) { return MD5.Add(Data,Size) && SHA1.Add(Data,Size) && SHA256.Add(Data,Size) && SHA512.Add(Data,Size); |