aboutsummaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/md5.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/md5.h b/src/md5.h
index 96ba2ce..76bdd88 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -30,12 +30,15 @@ namespace Bu
30 virtual void addData( const void *sData, int iSize ); 30 virtual void addData( const void *sData, int iSize );
31 using Bu::CryptoHash::addData; 31 using Bu::CryptoHash::addData;
32 virtual FString getResult(); 32 virtual FString getResult();
33 virtual void writeResult( Bu::Stream &sOut );
34 virtual FString getHexResult();
33 35
34 private: 36 private:
35 /** 37 /**
36 * Compute one block of input data. 38 * Compute one block of input data.
37 */ 39 */
38 void compBlock( long *x, long *lsum ); 40 void compBlock( long *x, long *lsum );
41 void compCap( long *sumout );
39 42
40 long inbuf[16]; 43 long inbuf[16];
41 long iFill; 44 long iFill;