~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/md4/md4.h

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        MD4_LONG A,B,C,D;
102
102
        MD4_LONG Nl,Nh;
103
103
        MD4_LONG data[MD4_LBLOCK];
104
 
        int num;
 
104
        unsigned int num;
105
105
        } MD4_CTX;
106
106
 
107
107
int MD4_Init(MD4_CTX *c);
108
 
int MD4_Update(MD4_CTX *c, const void *data, unsigned long len);
 
108
int MD4_Update(MD4_CTX *c, const void *data, size_t len);
109
109
int MD4_Final(unsigned char *md, MD4_CTX *c);
110
 
unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md);
 
110
unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
111
111
void MD4_Transform(MD4_CTX *c, const unsigned char *b);
112
112
#ifdef  __cplusplus
113
113
}