diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-02-22 22:06:31 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-02-22 22:06:31 +0100 |
commit | 9a961efc5cedeb2b7439114df18e8d0201c83fcf (patch) | |
tree | d63dae44904a59c58ceee214f1890f48a477ba88 /ftparchive/writer.h | |
parent | 54ce88fd2669a729c89c940be3abc9456d19d542 (diff) |
add sha512 support to apt-ftparchive
Diffstat (limited to 'ftparchive/writer.h')
-rw-r--r-- | ftparchive/writer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftparchive/writer.h b/ftparchive/writer.h index 3796f79f6..e1810821a 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -106,6 +106,7 @@ class PackagesWriter : public FTWScanner bool DoMD5; bool DoSHA1; bool DoSHA256; + bool DoSHA512; bool DoAlwaysStat; bool NoOverride; bool DoContents; @@ -195,6 +196,7 @@ protected: string MD5; string SHA1; string SHA256; + string SHA512; // Limited by FileFd::Size() unsigned long size; ~CheckSum() {}; |