]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/hashsum_template.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: hashsum_template.h,v 1.3 2001/05/07 05:05:47 jgg Exp $
4 /* ######################################################################
6 HashSumValueTemplate - Generic Storage for a hash value
8 ##################################################################### */
10 #ifndef APTPKG_HASHSUM_TEMPLATE_H
11 #define APTPKG_HASHSUM_TEMPLATE_H
17 #include <apt-pkg/strutl.h>
19 #ifndef APT_10_CLEANER_HEADERS
20 #include <apt-pkg/fileutl.h>
24 #ifndef APT_8_CLEANER_HEADERS
34 unsigned char Sum
[N
/8];
39 bool operator ==(const HashSumValue
&rhs
) const
41 return memcmp(Sum
,rhs
.Sum
,sizeof(Sum
)) == 0;
43 bool operator !=(const HashSumValue
&rhs
) const
45 return memcmp(Sum
,rhs
.Sum
,sizeof(Sum
)) != 0;
48 std::string
Value() const
51 { '0','1','2','3','4','5','6','7','8','9','a','b',
54 char Result
[((N
/8)*2)+1];
57 // Convert each char into two letters
60 for (; I
!= (N
/8)*2; J
++,I
+= 2)
62 Result
[I
] = Conv
[Sum
[J
] >> 4];
63 Result
[I
+ 1] = Conv
[Sum
[J
] & 0xF];
65 return std::string(Result
);
68 inline void Value(unsigned char S
[N
/8])
70 for (int I
= 0; I
!= sizeof(Sum
); ++I
)
74 inline operator std::string() const
79 bool Set(std::string Str
)
81 return Hex2Num(Str
,Sum
,sizeof(Sum
));
84 inline void Set(unsigned char S
[N
/8])
86 for (int I
= 0; I
!= sizeof(Sum
); ++I
)
90 HashSumValue(std::string Str
)
92 memset(Sum
,0,sizeof(Sum
));
97 memset(Sum
,0,sizeof(Sum
));
101 class SummationImplementation
104 virtual bool Add(const unsigned char *inbuf
, unsigned long long inlen
) = 0;
105 inline bool Add(const char *inbuf
, unsigned long long const inlen
)
106 { return Add((const unsigned char *)inbuf
, inlen
); }
108 inline bool Add(const unsigned char *Data
)
109 { return Add(Data
, strlen((const char *)Data
)); }
110 inline bool Add(const char *Data
)
111 { return Add((const unsigned char *)Data
, strlen(Data
)); }
113 inline bool Add(const unsigned char *Beg
, const unsigned char *End
)
114 { return Add(Beg
, End
- Beg
); }
115 inline bool Add(const char *Beg
, const char *End
)
116 { return Add((const unsigned char *)Beg
, End
- Beg
); }
118 bool AddFD(int Fd
, unsigned long long Size
= 0);
119 bool AddFD(FileFd
&Fd
, unsigned long long Size
= 0);