diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-29 08:38:12 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-29 08:38:12 +0100 |
commit | faeb435cab7b41a50c621ef9f96853d15c57d0d8 (patch) | |
tree | c2554080ab4a46b0cfdd1eba7fb0767328e75c44 /apt-pkg/contrib/hashes.h | |
parent | c1a61d1ca91e0a0a79b8c1be3fe04bcfa12cf0dc (diff) | |
parent | cf993341c2067ee091cfd51e5da0e237babce171 (diff) |
Merge branch 'feature/edit-sources' into debian/sid
Diffstat (limited to 'apt-pkg/contrib/hashes.h')
-rw-r--r-- | apt-pkg/contrib/hashes.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apt-pkg/contrib/hashes.h b/apt-pkg/contrib/hashes.h index 0c0b6c6a7..0a8bcd259 100644 --- a/apt-pkg/contrib/hashes.h +++ b/apt-pkg/contrib/hashes.h @@ -36,7 +36,10 @@ class HashString protected: std::string Type; std::string Hash; - static const char * _SupportedHashes[10]; + static const char* _SupportedHashes[10]; + + // internal helper + std::string GetHashForFile(std::string filename) const; public: HashString(std::string Type, std::string Hash); @@ -49,6 +52,10 @@ class HashString // verify the given filename against the currently loaded hash bool VerifyFile(std::string filename) const; + // generate a hash string from the given filename + bool FromFile(std::string filename); + + // helper std::string toStr() const; // convert to str as "type:hash" bool empty() const; |