* SUCH DAMAGE.
*/
+#include <string.h>
+
#ifndef _NETINET6_MD5_H_
#define _NETINET6_MD5_H_
u_int8_t md5_buf[MD5_BUFLEN];
} md5_ctxt;
-extern void md5_init(md5_ctxt *);
-extern void md5_loop(md5_ctxt *, const u_int8_t *, u_int);
-extern void md5_pad(md5_ctxt *);
-extern void md5_result(u_int8_t *, md5_ctxt *);
+static void md5_init(md5_ctxt *);
+static void md5_loop(md5_ctxt *, const u_int8_t *, u_int);
+static void md5_pad(md5_ctxt *);
+static void md5_result(u_int8_t *, md5_ctxt *);
/* compatibility */
#define MD5_CTX md5_ctxt
static char itoa64[] = /* 0 ... 63 => ascii - 64 */
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
-void
+static void
_crypt_to64(char *s, u_long v, int n)
{
while (--n >= 0) {
static void md5_calc(u_int8_t *, md5_ctxt *);
-void md5_init(ctxt)
+static void md5_init(ctxt)
md5_ctxt *ctxt;
{
ctxt->md5_n = 0;
bzero(ctxt->md5_buf, sizeof(ctxt->md5_buf));
}
-void md5_loop(ctxt, input, len)
+static void md5_loop(ctxt, input, len)
md5_ctxt *ctxt;
const u_int8_t *input;
u_int len; /* number of bytes */
}
}
-void md5_pad(ctxt)
+static void md5_pad(ctxt)
md5_ctxt *ctxt;
{
u_int gap;
md5_calc(ctxt->md5_buf, ctxt);
}
-void md5_result(digest, ctxt)
+static void md5_result(digest, ctxt)
u_int8_t *digest;
md5_ctxt *ctxt;
{