~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to whrlpool.h

  • Committer: noloader
  • Date: 2015-06-29 13:37:03 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:558
Cleared warning on operator precedence

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define CRYPTOPP_WHIRLPOOL_H
3
3
 
4
4
#include "config.h"
5
 
 
6
 
#ifdef WORD64_AVAILABLE
7
 
 
8
5
#include "iterhash.h"
9
6
 
10
7
NAMESPACE_BEGIN(CryptoPP)
11
8
 
12
 
//! <a href="http://www.weidai.com/scan-mirror/md.html#Whirlpool">Whirlpool</a>
13
 
/*! 512 Bit Hash */
 
9
//! <a href="http://www.cryptolounge.org/wiki/Whirlpool">Whirlpool</a>
14
10
class Whirlpool : public IteratedHashWithStaticTransform<word64, BigEndian, 64, 64, Whirlpool>
15
11
{
16
12
public:
23
19
NAMESPACE_END
24
20
 
25
21
#endif
26
 
 
27
 
#endif