~ubuntu-branches/ubuntu/lucid/unrar-nonfree/lucid

« back to all changes in this revision

Viewing changes to rijndael.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Meredith
  • Date: 2009-06-06 17:46:05 UTC
  • mfrom: (1.1.11 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090606174605-h4ciqxlpy39jmjx0
Tags: 1:3.9.3-1
* New upstream release
* Updated Copyright file (Closes: #531432)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  public:
31
31
    Rijndael();
32
32
    void init(Direction dir,const byte *key,byte *initVector);
33
 
    int blockEncrypt(const byte *input, int inputLen, byte *outBuffer);
34
 
    int blockDecrypt(const byte *input, int inputLen, byte *outBuffer);
 
33
    size_t blockEncrypt(const byte *input, size_t inputLen, byte *outBuffer);
 
34
    size_t blockDecrypt(const byte *input, size_t inputLen, byte *outBuffer);
35
35
};
36
36
        
37
37
#endif // _RIJNDAEL_H_