]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/sha512.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: sha512.h,v 1.3 2001/05/07 05:05:47 jgg Exp $
4 /* ######################################################################
6 SHA512SumValue - Storage for a SHA-512 hash.
7 SHA512Summation - SHA-512 Secure Hash Algorithm.
9 This is a C++ interface to a set of SHA512Sum functions, that mirrors
10 the equivalent MD5 & SHA1 classes.
12 ##################################################################### */
14 #ifndef APTPKG_SHA512_H
15 #define APTPKG_SHA512_H
27 class SHA512Summation
;
31 friend class SHA512Summation
;
32 unsigned char Sum
[64];
37 bool operator ==(const SHA512SumValue
&rhs
) const;
39 inline void Value(unsigned char S
[64])
40 {for (int I
= 0; I
!= sizeof(Sum
); I
++) S
[I
] = Sum
[I
];};
41 inline operator string() const {return Value();};
43 inline void Set(unsigned char S
[64])
44 {for (int I
= 0; I
!= sizeof(Sum
); I
++) Sum
[I
] = S
[I
];};
46 SHA512SumValue(string Str
);
53 unsigned char Sum
[64];
58 bool Add(const unsigned char *inbuf
,unsigned long inlen
);
59 inline bool Add(const char *Data
) {return Add((unsigned char *)Data
,strlen(Data
));};
60 bool AddFD(int Fd
,unsigned long Size
);
61 inline bool Add(const unsigned char *Beg
,const unsigned char *End
)
62 {return Add(Beg
,End
-Beg
);};
63 SHA512SumValue
Result();