]> git.saurik.com Git - apt.git/blob - apt-pkg/contrib/sha1.h
SHA-1 hashing algorithm
[apt.git] / apt-pkg / contrib / sha1.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: sha1.h,v 1.1 2001/03/06 05:03:49 jgg Exp $
4 /* ######################################################################
5
6 SHA1SumValue - Storage for a SHA-1 hash.
7 SHA1Summation - SHA-1 Secure Hash Algorithm.
8
9 This is a C++ interface to a set of SHA1Sum functions, that mirrors
10 the equivalent MD5 classes.
11
12 ##################################################################### */
13 /*}}}*/
14 #ifndef APTPKG_SHA1_H
15 #define APTPKG_SHA1_H
16
17 #ifdef __GNUG__
18 #pragma interface "apt-pkg/sha1.h"
19 #endif
20
21 #include <string>
22
23 class SHA1Summation;
24
25 class SHA1SumValue
26 {
27 friend class SHA1Summation;
28 unsigned char Sum[20];
29
30 public:
31
32 // Accessors
33 bool operator ==(const SHA1SumValue &rhs) const;
34 string Value() const;
35 inline void Value(unsigned char S[20])
36 {for (int I = 0; I != sizeof(Sum); I++) S[I] = Sum[I];};
37 inline operator string() const {return Value();};
38 bool Set(string Str);
39 inline void Set(unsigned char S[20])
40 {for (int I = 0; I != sizeof(Sum); I++) Sum[I] = S[I];};
41
42 SHA1SumValue(string Str);
43 SHA1SumValue();
44 };
45
46 class SHA1Summation
47 {
48 unsigned char Buffer[64];
49 unsigned char State[5*4];
50 unsigned char Count[2*4];
51 bool Done;
52
53 public:
54
55 bool Add(const unsigned char *inbuf,unsigned long inlen);
56 inline bool Add(const char *Data) {return Add((unsigned char *)Data,strlen(Data));};
57 bool AddFD(int Fd,unsigned long Size);
58 inline bool Add(const unsigned char *Beg,const unsigned char *End)
59 {return Add(Beg,End-Beg);};
60 SHA1SumValue Result();
61
62 SHA1Summation();
63 };
64
65 #endif