aboutsummaryrefslogtreecommitdiff
path: root/src/cryptohash.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cryptohash.h2
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 };