diff options
| author | paul <paul> | 2006-01-17 17:40:45 +0000 | 
|---|---|---|
| committer | paul <paul> | 2006-01-17 17:40:45 +0000 | 
| commit | 7d0b0c4b7f510178a8960b0e00368be017ed5a08 (patch) | |
| tree | 4657272b687af5f85235ce85db9ed77dbfac4142 /lib/md5.h | |
| parent | d3092e7f226c48f7caeac22ad62f39e8d71d9e12 (diff) | |
[lib/md5] md5_loop should take void pointer for more useful caller warnings.
2006-01-17 Paul Jakma <paul.jakma@sun.com>
	* md5.{c,h}: (md5_loop) Is better off taking a void * and doing
	  cast to byte wise type internally, avoids needs for casts
	  in users.
Diffstat (limited to 'lib/md5.h')
| -rw-r--r-- | lib/md5.h | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@  /* $USAGI: md5.h,v 1.2 2000/11/02 11:59:25 yoshfuji Exp $ */  /*	$KAME: md5.h,v 1.4 2000/03/27 04:36:22 sumikawa Exp $	*/ -/*	$Id: md5.h,v 1.2 2005/11/03 09:00:23 paul Exp $ */ +/*	$Id: md5.h,v 1.3 2006/01/17 17:40:45 paul Exp $ */  /*   * Copyright (C) 2004 6WIND @@ -68,7 +68,7 @@ typedef struct {  } md5_ctxt;  extern void md5_init (md5_ctxt *); -extern void md5_loop (md5_ctxt *, const uint8_t *, u_int); +extern void md5_loop (md5_ctxt *, const void *, u_int);  extern void md5_pad (md5_ctxt *);  extern void md5_result (uint8_t *, md5_ctxt *);  | 
