summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/hashes.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2015-09-01 13:58:00 +0200
committerDavid Kalnischkies <david@kalnischkies.de>2015-09-01 14:19:44 +0200
commit63d609985eb7eefa5f2332bfe4fab96f017760a1 (patch)
treead38d0beb698f3bb35bfcedc145c1f7f85a38989 /apt-pkg/contrib/hashes.cc
parent55ae7a516126f9f064d8353bf962256b7307590a (diff)
use unusable-for-security hashes for integrity checks
We want to declare some hashes as not enough for security, so that a user will need --allow-unauthenticated or similar to get data secured only by those hashes, but we can still us these hashes for integrity checks if we got them.
Diffstat (limited to 'apt-pkg/contrib/hashes.cc')
-rw-r--r--apt-pkg/contrib/hashes.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/contrib/hashes.cc b/apt-pkg/contrib/hashes.cc
index 41a0037cd..5c0023dc7 100644
--- a/apt-pkg/contrib/hashes.cc
+++ b/apt-pkg/contrib/hashes.cc
@@ -136,6 +136,7 @@ APT_PURE bool HashString::usable() const /*{{{*/
(Type != "MD5Sum")
);
}
+ /*}}}*/
std::string HashString::toStr() const /*{{{*/
{
return Type + ":" + Hash;