blob: 960ff1f46bda1a8aabb3d16f52a073668383d0bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// $Id: sha512.h,v 1.3 2001/05/07 05:05:47 jgg Exp $
/* ######################################################################
SHA512SumValue - Storage for a SHA-512 hash.
SHA512Summation - SHA-512 Secure Hash Algorithm.
This is a C++ interface to a set of SHA512Sum functions, that mirrors
the equivalent MD5 & SHA1 classes.
##################################################################### */
/*}}}*/
#ifndef APTPKG_SHA512_H
#define APTPKG_SHA512_H
#include <string>
#include <cstring>
#include <algorithm>
#include <stdint.h>
#include "sha2.h"
using std::string;
using std::min;
class SHA512Summation;
class SHA512SumValue
{
friend class SHA512Summation;
unsigned char Sum[64];
public:
// Accessors
bool operator ==(const SHA512SumValue &rhs) const;
string Value() const;
inline void Value(unsigned char S[64])
{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[64])
{for (int I = 0; I != sizeof(Sum); I++) Sum[I] = S[I];};
SHA512SumValue(string Str);
SHA512SumValue();
};
class SHA512Summation
{
SHA512_CTX ctx;
unsigned char Sum[64];
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);};
SHA512SumValue Result();
SHA512Summation();
};
#endif
|