summaryrefslogtreecommitdiff
path: root/lib/sha256.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-01-10 17:47:56 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-01-10 17:47:56 +0000
commitd11af4159eb8836696ef29f1e1ac9ad4db348d47 (patch)
tree87dc9cf5d37eebdd601ef33b9925bfb955ff87ff /lib/sha256.h
parent71520b31c09c843d37c84abd12694e06428cdd47 (diff)
downloadcoreutils-d11af4159eb8836696ef29f1e1ac9ad4db348d47.tar.xz
Sync from gnulib.
Diffstat (limited to 'lib/sha256.h')
-rw-r--r--lib/sha256.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sha256.h b/lib/sha256.h
index 34c3756ca..11be3adf1 100644
--- a/lib/sha256.h
+++ b/lib/sha256.h
@@ -1,6 +1,6 @@
/* Declarations of functions and data types used for SHA256 and SHA224 sum
library functions.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -25,10 +25,10 @@
/* Structure to save state of computation between the single steps. */
struct sha256_ctx
{
- md5_uint32 state[8];
+ uint32_t state[8];
- md5_uint32 total[2];
- md5_uint32 buflen;
+ uint32_t total[2];
+ uint32_t buflen;
char buffer[128];
};