~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to trunhash.h

  • Committer: weidai
  • Date: 2007-05-04 15:36:15 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:339
fix compile

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
        TruncatedHashTemplate(size_t digestSize)
27
27
                : m_digestSize(digestSize) {}
28
28
 
 
29
        void Restart()
 
30
                {m_hm.Restart();}
29
31
        void Update(const byte *input, size_t length)
30
32
                {m_hm.Update(input, length);}
31
33
        unsigned int DigestSize() const {return m_digestSize;}