]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/hashes.h
* add --dsc-only option, thanks to K. Richard Pixley
[apt.git] / apt-pkg / contrib / hashes.h
index 40bbe00a02673edae48a0cd23f78cd018435de26..eefa7bf4147dd670e21df66eeb32e3353c0563ea 100644 (file)
@@ -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);