Loading lib/md4.c +6 −6 Original line number Diff line number Diff line Loading @@ -58,9 +58,9 @@ typedef struct { MD4_u32plus block[16]; } MD4_CTX; extern void MD4_Init(MD4_CTX *ctx); extern void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size); extern void MD4_Final(unsigned char *result, MD4_CTX *ctx); static void MD4_Init(MD4_CTX *ctx); static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size); static void MD4_Final(unsigned char *result, MD4_CTX *ctx); /* * The basic MD4 functions. Loading Loading @@ -196,7 +196,7 @@ static const void *body(MD4_CTX *ctx, const void *data, unsigned long size) return ptr; } void MD4_Init(MD4_CTX *ctx) static void MD4_Init(MD4_CTX *ctx) { ctx->a = 0x67452301; ctx->b = 0xefcdab89; Loading @@ -207,7 +207,7 @@ void MD4_Init(MD4_CTX *ctx) ctx->hi = 0; } void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) { MD4_u32plus saved_lo; unsigned long used, available; Loading Loading @@ -241,7 +241,7 @@ void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) memcpy(ctx->buffer, data, size); } void MD4_Final(unsigned char *result, MD4_CTX *ctx) static void MD4_Final(unsigned char *result, MD4_CTX *ctx) { unsigned long used, available; Loading lib/md5.c +6 −6 Original line number Diff line number Diff line Loading @@ -208,9 +208,9 @@ typedef struct { MD5_u32plus block[16]; } MD5_CTX; extern void MD5_Init(MD5_CTX *ctx); extern void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); extern void MD5_Final(unsigned char *result, MD5_CTX *ctx); static void MD5_Init(MD5_CTX *ctx); static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); static void MD5_Final(unsigned char *result, MD5_CTX *ctx); /* * The basic MD5 functions. Loading Loading @@ -368,7 +368,7 @@ static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) return ptr; } void MD5_Init(MD5_CTX *ctx) static void MD5_Init(MD5_CTX *ctx) { ctx->a = 0x67452301; ctx->b = 0xefcdab89; Loading @@ -379,7 +379,7 @@ void MD5_Init(MD5_CTX *ctx) ctx->hi = 0; } void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) { MD5_u32plus saved_lo; unsigned long used, available; Loading Loading @@ -413,7 +413,7 @@ void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) memcpy(ctx->buffer, data, size); } void MD5_Final(unsigned char *result, MD5_CTX *ctx) static void MD5_Final(unsigned char *result, MD5_CTX *ctx) { unsigned long used, available; Loading Loading
lib/md4.c +6 −6 Original line number Diff line number Diff line Loading @@ -58,9 +58,9 @@ typedef struct { MD4_u32plus block[16]; } MD4_CTX; extern void MD4_Init(MD4_CTX *ctx); extern void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size); extern void MD4_Final(unsigned char *result, MD4_CTX *ctx); static void MD4_Init(MD4_CTX *ctx); static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size); static void MD4_Final(unsigned char *result, MD4_CTX *ctx); /* * The basic MD4 functions. Loading Loading @@ -196,7 +196,7 @@ static const void *body(MD4_CTX *ctx, const void *data, unsigned long size) return ptr; } void MD4_Init(MD4_CTX *ctx) static void MD4_Init(MD4_CTX *ctx) { ctx->a = 0x67452301; ctx->b = 0xefcdab89; Loading @@ -207,7 +207,7 @@ void MD4_Init(MD4_CTX *ctx) ctx->hi = 0; } void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) { MD4_u32plus saved_lo; unsigned long used, available; Loading Loading @@ -241,7 +241,7 @@ void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size) memcpy(ctx->buffer, data, size); } void MD4_Final(unsigned char *result, MD4_CTX *ctx) static void MD4_Final(unsigned char *result, MD4_CTX *ctx) { unsigned long used, available; Loading
lib/md5.c +6 −6 Original line number Diff line number Diff line Loading @@ -208,9 +208,9 @@ typedef struct { MD5_u32plus block[16]; } MD5_CTX; extern void MD5_Init(MD5_CTX *ctx); extern void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); extern void MD5_Final(unsigned char *result, MD5_CTX *ctx); static void MD5_Init(MD5_CTX *ctx); static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); static void MD5_Final(unsigned char *result, MD5_CTX *ctx); /* * The basic MD5 functions. Loading Loading @@ -368,7 +368,7 @@ static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) return ptr; } void MD5_Init(MD5_CTX *ctx) static void MD5_Init(MD5_CTX *ctx) { ctx->a = 0x67452301; ctx->b = 0xefcdab89; Loading @@ -379,7 +379,7 @@ void MD5_Init(MD5_CTX *ctx) ctx->hi = 0; } void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) static void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) { MD5_u32plus saved_lo; unsigned long used, available; Loading Loading @@ -413,7 +413,7 @@ void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) memcpy(ctx->buffer, data, size); } void MD5_Final(unsigned char *result, MD5_CTX *ctx) static void MD5_Final(unsigned char *result, MD5_CTX *ctx) { unsigned long used, available; Loading