diff options
Diffstat (limited to 'src/cryptohash.h')
-rw-r--r-- | src/cryptohash.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cryptohash.h b/src/cryptohash.h new file mode 100644 index 0000000..01d4634 --- /dev/null +++ b/src/cryptohash.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef BU_CRYPTO_HASH_H | ||
2 | #define BU_CRYPTO_HASH_H | ||
3 | |||
4 | #include "bu/fstring.h" | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | class CryptoHash | ||
9 | { | ||
10 | public: | ||
11 | CryptoHash(); | ||
12 | virtual ~CryptoHash(); | ||
13 | |||
14 | virtual void reset() = 0; | ||
15 | virtual void setSalt( const Bu::FString &sSalt ) = 0; | ||
16 | virtual void addData( const char *sData, int iSize ) = 0; | ||
17 | virtual void addData( const Bu::FString &sData ); | ||
18 | virtual FString getResult() = 0; | ||
19 | }; | ||
20 | }; | ||
21 | |||
22 | #endif | ||