~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to shark.h

  • Committer: weidai
  • Date: 2011-01-07 01:30:24 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:522
fix for compiling with Clang from Marshall Clow

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
*/
6
6
 
7
7
#include "config.h"
8
 
 
9
 
#ifdef WORD64_AVAILABLE
10
 
 
11
8
#include "seckey.h"
12
9
#include "secblock.h"
13
10
 
25
22
        class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SHARK_Info>
26
23
        {
27
24
        public:
28
 
                void UncheckedSetKey(CipherDir dir, const byte *key, unsigned int length, unsigned int rounds);
 
25
                void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &param);
29
26
 
30
27
        protected:
31
28
                unsigned int m_rounds;
66
63
NAMESPACE_END
67
64
 
68
65
#endif
69
 
#endif