md4, md5: drop redundant forward declarations

Closes #20291
This commit is contained in:
Viktor Szakats
2026-01-13 15:53:09 +01:00
parent f6a83894eb
commit c446ada2a6
2 changed files with 0 additions and 9 deletions

View File

@@ -201,10 +201,6 @@ struct md4_ctx {
};
typedef struct md4_ctx MD4_CTX;
static int 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.
*

View File

@@ -287,11 +287,6 @@ struct md5_ctx {
};
typedef struct md5_ctx my_md5_ctx;
static CURLcode my_md5_init(void *ctx);
static void my_md5_update(void *ctx, const unsigned char *data,
unsigned int size);
static void my_md5_final(unsigned char *result, void *ctx);
/*
* The basic MD5 functions.
*