projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
* debian/apt.conf.autoremove:
[apt.git]
/
apt-pkg
/
contrib
/
md5.cc
diff --git
a/apt-pkg/contrib/md5.cc
b/apt-pkg/contrib/md5.cc
index 1e2ab36563826c8b74c87c4d2bf231705b4b77f5..a095f8f0fbebf2ba71da0d0d3c0380c9d755e1d6 100644
(file)
--- a/
apt-pkg/contrib/md5.cc
+++ b/
apt-pkg/contrib/md5.cc
@@
-1,6
+1,6
@@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: md5.cc,v 1.1
1 1999/12/10 23:40:29
jgg Exp $
+// $Id: md5.cc,v 1.1
2 2001/05/13 05:15:03
jgg Exp $
/* ######################################################################
MD5Sum - MD5 Message Digest Algorithm.
/* ######################################################################
MD5Sum - MD5 Message Digest Algorithm.
@@
-35,10
+35,6
@@
##################################################################### */
/*}}}*/
// Include Files /*{{{*/
##################################################################### */
/*}}}*/
// Include Files /*{{{*/
-#ifdef __GNUG__
-#pragma implementation "apt-pkg/md5.h"
-#endif
-
#include <apt-pkg/md5.h>
#include <apt-pkg/strutl.h>
#include <apt-pkg/md5.h>
#include <apt-pkg/strutl.h>
@@
-48,6
+44,7
@@
#include <inttypes.h>
#include <config.h>
#include <system.h>
#include <inttypes.h>
#include <config.h>
#include <system.h>
+
/*}}}*/
// byteSwap - Swap bytes in a buffer /*{{{*/
/*}}}*/
// byteSwap - Swap bytes in a buffer /*{{{*/
@@
-191,7
+188,7
@@
MD5SumValue::MD5SumValue()
/* Converts the hex string into a set of chars */
bool MD5SumValue::Set(string Str)
{
/* Converts the hex string into a set of chars */
bool MD5SumValue::Set(string Str)
{
- return Hex2Num(Str
.begin(),Str.end()
,Sum,sizeof(Sum));
+ return Hex2Num(Str,Sum,sizeof(Sum));
}
/*}}}*/
// MD5SumValue::Value - Convert the number into a string /*{{{*/
}
/*}}}*/
// MD5SumValue::Value - Convert the number into a string /*{{{*/
@@
-299,8
+296,8
@@
bool MD5Summation::AddFD(int Fd,unsigned long Size)
int Res = 0;
while (Size != 0)
{
int Res = 0;
while (Size != 0)
{
- Res = read(Fd,Buf,
MIN(Size,
sizeof(Buf)));
- if (Res < 0 || (unsigned)Res !=
MIN(Size,
sizeof(Buf)))
+ Res = read(Fd,Buf,
min(Size,(unsigned long)
sizeof(Buf)));
+ if (Res < 0 || (unsigned)Res !=
min(Size,(unsigned long)
sizeof(Buf)))
return false;
Size -= Res;
Add(Buf,Res);
return false;
Size -= Res;
Add(Buf,Res);