]> git.saurik.com Git - apt-legacy.git/blobdiff - apt-pkg/contrib/md5.cc
Fix compilation of http when embedding into Cydia.
[apt-legacy.git] / apt-pkg / contrib / md5.cc
index c0fa8493dff2e161099c57ad2ac7377a0006139f..6c9106745ae508f8ff73aece1322a7d6df437a76 100644 (file)
@@ -173,6 +173,12 @@ MD5SumValue::MD5SumValue(string Str)
    memset(Sum,0,sizeof(Sum));
    Set(Str);
 }
+
+MD5SumValue::MD5SumValue(const srkString &Str)
+{
+   memset(Sum, 0, sizeof(Sum));
+   Set(Str);
+}
                                                                        /*}}}*/
 // MD5SumValue::MD5SumValue - Default constructor                      /*{{{*/
 // ---------------------------------------------------------------------
@@ -186,6 +192,11 @@ MD5SumValue::MD5SumValue()
 // ---------------------------------------------------------------------
 /* Converts the hex string into a set of chars */
 bool MD5SumValue::Set(string Str)
+{
+   return Hex2Num(Str,Sum,sizeof(Sum));
+}
+
+bool MD5SumValue::Set(const srkString &Str)
 {
    return Hex2Num(Str,Sum,sizeof(Sum));
 }