diff options
author | Michael Vogt <egon@bottom> | 2006-03-30 03:08:58 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-03-30 03:08:58 +0200 |
commit | deb8d32b776073592c9e77a1f3786c251cc8f5eb (patch) | |
tree | 40a81da75f9a05f5925441dab9fe3aaa9f3eb7ee /apt-pkg/contrib/hashes.h | |
parent | 5975dc1b05329820b50d86185cf245ec42ae536f (diff) | |
parent | cde41ae88e2742b905991e9e2ebbb535e61eb6d1 (diff) |
* merged the apt-ftparchive improvments by aj (thanks dude!)
Diffstat (limited to 'apt-pkg/contrib/hashes.h')
-rw-r--r-- | apt-pkg/contrib/hashes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/contrib/hashes.h b/apt-pkg/contrib/hashes.h index 40bbe00a0..eefa7bf41 100644 --- a/apt-pkg/contrib/hashes.h +++ b/apt-pkg/contrib/hashes.h @@ -19,6 +19,7 @@ #include <apt-pkg/md5.h> #include <apt-pkg/sha1.h> +#include <apt-pkg/sha256.h> #include <algorithm> @@ -30,10 +31,11 @@ class Hashes MD5Summation MD5; SHA1Summation SHA1; + SHA256Summation SHA256; inline bool Add(const unsigned char *Data,unsigned long Size) { - return MD5.Add(Data,Size) && SHA1.Add(Data,Size); + return MD5.Add(Data,Size) && SHA1.Add(Data,Size) && SHA256.Add(Data,Size); }; inline bool Add(const char *Data) {return Add((unsigned char *)Data,strlen(Data));}; bool AddFD(int Fd,unsigned long Size); |