diff options
Diffstat (limited to 'src/libstdcrypto/sha512_final.c')
-rw-r--r-- | src/libstdcrypto/sha512_final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstdcrypto/sha512_final.c b/src/libstdcrypto/sha512_final.c index 62a6187..ebda597 100644 --- a/src/libstdcrypto/sha512_final.c +++ b/src/libstdcrypto/sha512_final.c @@ -7,8 +7,8 @@ void sha512_final (SHA512Schedule *ctx, char *digest) { - register unsigned int i = 0 ; - register unsigned int pad = ctx->len % 128; + unsigned int i = 0 ; + unsigned int pad = ctx->len % 128; ctx->buf[pad++] = 0x80 ; if (pad > 112) |