Support large files in the complete toolset. Indexes of this
[ntk/apt.git] / apt-pkg / contrib / sha1.h
CommitLineData
784202a2
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
233b185f 3// $Id: sha1.h,v 1.3 2001/05/07 05:05:47 jgg Exp $
784202a2
AL
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
784202a2 17#include <string>
4f333a8b 18#include <cstring>
42ab8223 19#include <algorithm>
784202a2 20
233b185f 21using std::string;
42ab8223 22using std::min;
233b185f 23
7ac56f8f 24#include "hashsum_template.h"
784202a2 25
7ac56f8f 26typedef HashSumValue<160> SHA1SumValue;
784202a2 27
c31c1dde 28class SHA1Summation : public SummationImplementation
784202a2 29{
70949daf
AL
30 /* assumes 64-bit alignment just in case */
31 unsigned char Buffer[64] __attribute__((aligned(8)));
32 unsigned char State[5*4] __attribute__((aligned(8)));
33 unsigned char Count[2*4] __attribute__((aligned(8)));
784202a2
AL
34 bool Done;
35
36 public:
650faab0 37 bool Add(const unsigned char *inbuf, unsigned long long inlen);
c31c1dde 38 using SummationImplementation::Add;
784202a2 39
784202a2
AL
40 SHA1SumValue Result();
41
42 SHA1Summation();
43};
44
45#endif