[sword-cvs] sword/include swcipher.h,1.7,1.8
sword@www.crosswire.org
sword@www.crosswire.org
Tue, 12 Aug 2003 03:37:08 -0700
Update of /usr/local/cvsroot/sword/include
In directory www:/tmp/cvs-serv6658/include
Modified Files:
swcipher.h
Log Message:
Index: swcipher.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/swcipher.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- swcipher.h 1 Oct 2002 19:52:40 -0000 1.7
+++ swcipher.h 12 Aug 2003 10:37:06 -0000 1.8
@@ -36,14 +36,14 @@
char *buf;
bool cipher;
- int len;
+ unsigned long len;
protected:
public:
SWCipher (unsigned char *key);
virtual void setCipherKey (const char *key);
virtual ~ SWCipher ();
- virtual char *Buf (const char *buf = 0, unsigned int len = 0);
- virtual char *cipherBuf (unsigned int *len, const char *buf = 0);
+ virtual char *Buf (const char *buf = 0, unsigned long len = 0);
+ virtual char *cipherBuf (unsigned long *len, const char *buf = 0);
virtual void Encode (void);
virtual void Decode (void);
};