diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-10-31 05:41:13 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-10-31 05:41:13 +0000 |
commit | a67fdaa1ef1e3a5eea88d19e327c05330998e8aa (patch) | |
tree | 71897d87312461153c893993ed0582aaa08a9399 /src/sha1.h | |
parent | 58cccdbe67f6e1966116b3d2f4c83d77863daadc (diff) | |
download | libbu++-a67fdaa1ef1e3a5eea88d19e327c05330998e8aa.tar.gz libbu++-a67fdaa1ef1e3a5eea88d19e327c05330998e8aa.tar.bz2 libbu++-a67fdaa1ef1e3a5eea88d19e327c05330998e8aa.tar.xz libbu++-a67fdaa1ef1e3a5eea88d19e327c05330998e8aa.zip |
Added an sha1 class...
Diffstat (limited to 'src/sha1.h')
-rw-r--r-- | src/sha1.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/sha1.h b/src/sha1.h new file mode 100644 index 0000000..ab6081d --- /dev/null +++ b/src/sha1.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* sha1.h | ||
2 | |||
3 | Copyright (c) 2005 Michael D. Leonhard | ||
4 | |||
5 | http://tamale.net/ | ||
6 | |||
7 | This file is licensed under the terms described in the | ||
8 | accompanying LICENSE file. | ||
9 | */ | ||
10 | |||
11 | #ifndef SHA1_H | ||
12 | #define SHA1_H | ||
13 | |||
14 | #include <stdint.h> | ||
15 | |||
16 | /** | ||
17 | * Calculates SHA-1 sums. This is based strongly on code from Michael D. | ||
18 | * Leonhard who released his code under the terms of the MIT license, thank you! | ||
19 | */ | ||
20 | class Sha1 | ||
21 | { | ||
22 | public: | ||
23 | Sha1(); | ||
24 | ~Sha1(); | ||
25 | |||
26 | void update( const char* data, int num ); | ||
27 | unsigned char* getDigest(); | ||
28 | |||
29 | // utility methods | ||
30 | static uint32_t lrot( uint32_t x, int bits ); | ||
31 | static void toBigEndian( uint32_t in, unsigned char* out ); | ||
32 | |||
33 | private: | ||
34 | // fields | ||
35 | uint32_t H0, H1, H2, H3, H4; | ||
36 | unsigned char bytes[64]; | ||
37 | int unprocessedBytes; | ||
38 | uint32_t size; | ||
39 | void process(); | ||
40 | }; | ||
41 | |||
42 | #endif | ||