]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/sha256.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: sha1.h,v 1.3 2001/05/07 05:05:47 jgg Exp $
4 /* ######################################################################
6 SHA256SumValue - Storage for a SHA-256 hash.
7 SHA256Summation - SHA-256 Secure Hash Algorithm.
9 This is a C++ interface to a set of SHA256Sum functions, that mirrors
10 the equivalent MD5 & SHA1 classes.
12 ##################################################################### */
14 #ifndef APTPKG_SHA256_H
15 #define APTPKG_SHA256_H
25 class SHA256Summation
;
29 friend class SHA256Summation
;
30 unsigned char Sum
[32];
35 bool operator ==(const SHA256SumValue
&rhs
) const;
37 inline void Value(unsigned char S
[32])
38 {for (int I
= 0; I
!= sizeof(Sum
); I
++) S
[I
] = Sum
[I
];};
39 inline operator string() const {return Value();};
41 inline void Set(unsigned char S
[32])
42 {for (int I
= 0; I
!= sizeof(Sum
); I
++) Sum
[I
] = S
[I
];};
44 SHA256SumValue(string Str
);
56 struct sha256_ctx Sum
;
62 bool Add(const unsigned char *inbuf
,unsigned long inlen
);
63 inline bool Add(const char *Data
) {return Add((unsigned char *)Data
,strlen(Data
));};
64 bool AddFD(int Fd
,unsigned long Size
);
65 inline bool Add(const unsigned char *Beg
,const unsigned char *End
)
66 {return Add(Beg
,End
-Beg
);};
67 SHA256SumValue
Result();