diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-02-24 00:06:16 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-02-24 00:06:16 +0000 |
commit | ef2935347099967cc7092fa7f472d91d51571468 (patch) | |
tree | abf0c041a31610fa7f8fb562c3c36a8277c438d2 /src/cryptohash.h | |
parent | 4309066dff46f52690998bbd1f60ec8b1631f142 (diff) | |
download | libbu++-ef2935347099967cc7092fa7f472d91d51571468.tar.gz libbu++-ef2935347099967cc7092fa7f472d91d51571468.tar.bz2 libbu++-ef2935347099967cc7092fa7f472d91d51571468.tar.xz libbu++-ef2935347099967cc7092fa7f472d91d51571468.zip |
Whoa, lots of updates. Md5 is more general, nids, cache, cachestore, and
cachestorenids all support synchronizing now. Url is pretty much done.
Diffstat (limited to 'src/cryptohash.h')
-rw-r--r-- | src/cryptohash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptohash.h b/src/cryptohash.h index 01d4634..ed8d9ec 100644 --- a/src/cryptohash.h +++ b/src/cryptohash.h | |||
@@ -13,7 +13,7 @@ namespace Bu | |||
13 | 13 | ||
14 | virtual void reset() = 0; | 14 | virtual void reset() = 0; |
15 | virtual void setSalt( const Bu::FString &sSalt ) = 0; | 15 | virtual void setSalt( const Bu::FString &sSalt ) = 0; |
16 | virtual void addData( const char *sData, int iSize ) = 0; | 16 | virtual void addData( const void *sData, int iSize ) = 0; |
17 | virtual void addData( const Bu::FString &sData ); | 17 | virtual void addData( const Bu::FString &sData ); |
18 | virtual FString getResult() = 0; | 18 | virtual FString getResult() = 0; |
19 | }; | 19 | }; |