summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/sha1.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:57:07 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:57:07 +0000
commit784202a271ae7e303aacbe226bb87fed50a16f81 (patch)
tree8b0696961e80d02cf4925d709306f6e2a18b944a /apt-pkg/contrib/sha1.h
parent874ef47da1ad239cd661c0ec79a02303994882ad (diff)
SHA-1 hashing algorithm
Author: jgg Date: 2001-03-06 05:03:49 GMT SHA-1 hashing algorithm
Diffstat (limited to 'apt-pkg/contrib/sha1.h')
-rw-r--r--apt-pkg/contrib/sha1.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/apt-pkg/contrib/sha1.h b/apt-pkg/contrib/sha1.h
new file mode 100644
index 000000000..a6fe2d94a
--- /dev/null
+++ b/apt-pkg/contrib/sha1.h
@@ -0,0 +1,65 @@
+// -*- mode: cpp; mode: fold -*-
+// Description /*{{{*/
+// $Id: sha1.h,v 1.1 2001/03/06 05:03:49 jgg Exp $
+/* ######################################################################
+
+ SHA1SumValue - Storage for a SHA-1 hash.
+ SHA1Summation - SHA-1 Secure Hash Algorithm.
+
+ This is a C++ interface to a set of SHA1Sum functions, that mirrors
+ the equivalent MD5 classes.
+
+ ##################################################################### */
+ /*}}}*/
+#ifndef APTPKG_SHA1_H
+#define APTPKG_SHA1_H
+
+#ifdef __GNUG__
+#pragma interface "apt-pkg/sha1.h"
+#endif
+
+#include <string>
+
+class SHA1Summation;
+
+class SHA1SumValue
+{
+ friend class SHA1Summation;
+ unsigned char Sum[20];
+
+ public:
+
+ // Accessors
+ bool operator ==(const SHA1SumValue &rhs) const;
+ string Value() const;
+ inline void Value(unsigned char S[20])
+ {for (int I = 0; I != sizeof(Sum); I++) S[I] = Sum[I];};
+ inline operator string() const {return Value();};
+ bool Set(string Str);
+ inline void Set(unsigned char S[20])
+ {for (int I = 0; I != sizeof(Sum); I++) Sum[I] = S[I];};
+
+ SHA1SumValue(string Str);
+ SHA1SumValue();
+};
+
+class SHA1Summation
+{
+ unsigned char Buffer[64];
+ unsigned char State[5*4];
+ unsigned char Count[2*4];
+ bool Done;
+
+ public:
+
+ bool Add(const unsigned char *inbuf,unsigned long inlen);
+ inline bool Add(const char *Data) {return Add((unsigned char *)Data,strlen(Data));};
+ bool AddFD(int Fd,unsigned long Size);
+ inline bool Add(const unsigned char *Beg,const unsigned char *End)
+ {return Add(Beg,End-Beg);};
+ SHA1SumValue Result();
+
+ SHA1Summation();
+};
+
+#endif