mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-25 16:18:03 -04:00
s/u_int/unsigned int/g
This commit is contained in:
parent
676c534c8d
commit
801c511ecd
1 changed files with 3 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: sha1.h,v 1.2 2000/06/07 00:22:32 explorer Exp $ */
|
||||
/* $Id: sha1.h,v 1.3 2000/06/07 00:30:42 explorer Exp $ */
|
||||
|
||||
/* $NetBSD: sha1.h,v 1.2 1998/05/29 22:55:44 thorpej Exp $ */
|
||||
|
||||
|
|
@ -38,7 +38,8 @@ typedef struct {
|
|||
|
||||
void isc_sha1_init(isc_sha1_t *ctx);
|
||||
void isc_sha1_invalidate(isc_sha1_t *ctx);
|
||||
void isc_sha1_update(isc_sha1_t *ctx, const unsigned char *data, u_int len);
|
||||
void isc_sha1_update(isc_sha1_t *ctx, const unsigned char *data,
|
||||
unsigned int len);
|
||||
void isc_sha1_final(isc_sha1_t *ctx, unsigned char digest[20]);
|
||||
|
||||
#endif /* ISC_SHA1_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue