~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to blowfish.h

  • Committer: weidai
  • Date: 2010-06-18 01:52:34 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:485
avoid SecBlock of arrays

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
        {
22
22
        public:
23
23
                void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
24
 
                void UncheckedSetKey(CipherDir direction, const byte *key_string, unsigned int keylength);
 
24
                void UncheckedSetKey(const byte *key_string, unsigned int keylength, const NameValuePairs &params);
25
25
 
26
26
        private:
27
27
                void crypt_block(const word32 in[2], word32 out[2]) const;