MD5Pad() should never have been exposed.
This commit is contained in:
parent
a0110b5e9e
commit
bbe97a9d2e
@ -186,9 +186,8 @@ MD5Update (context, input, inputLen)
|
||||
* MD5 padding. Adds padding followed by original length.
|
||||
*/
|
||||
|
||||
void
|
||||
MD5Pad (context)
|
||||
MD5_CTX *context;
|
||||
static void
|
||||
MD5Pad (MD5_CTX *context)
|
||||
{
|
||||
unsigned char bits[8];
|
||||
unsigned int index, padLen;
|
||||
|
@ -39,7 +39,6 @@ typedef struct MD5Context {
|
||||
__BEGIN_DECLS
|
||||
void MD5Init (MD5_CTX *);
|
||||
void MD5Update (MD5_CTX *, const unsigned char *, unsigned int);
|
||||
void MD5Pad (MD5_CTX *);
|
||||
void MD5Final (unsigned char [16], MD5_CTX *);
|
||||
char * MD5End(MD5_CTX *, char *);
|
||||
char * MD5File(const char *, char *);
|
||||
|
Loading…
x
Reference in New Issue
Block a user