summaryrefslogtreecommitdiffstats
path: root/lib/libmd/sha0c.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libmd/sha0c.c')
-rw-r--r--lib/libmd/sha0c.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libmd/sha0c.c b/lib/libmd/sha0c.c
index 6d115ea..47ea62b 100644
--- a/lib/libmd/sha0c.c
+++ b/lib/libmd/sha0c.c
@@ -120,7 +120,7 @@ SHA_CTX *c;
const unsigned char *data;
size_t len;
{
- register u_int32_t *p;
+ u_int32_t *p;
int ew,ec,sw,sc;
u_int32_t l;
@@ -290,7 +290,7 @@ SHA_CTX *c;
const u_int32_t *W;
int num;
{
- register u_int32_t A,B,C,D,E,T;
+ u_int32_t A,B,C,D,E,T;
u_int32_t X[16];
A=c->h0;
@@ -408,9 +408,9 @@ void SHA_Final(md, c)
unsigned char *md;
SHA_CTX *c;
{
- register int i,j;
- register u_int32_t l;
- register u_int32_t *p;
+ int i,j;
+ u_int32_t l;
+ u_int32_t *p;
static unsigned char end[4]={0x80,0x00,0x00,0x00};
unsigned char *cp=end;
OpenPOWER on IntegriCloud