diff options
Diffstat (limited to 'mozilla-sha1/sha1.c')
-rw-r--r-- | mozilla-sha1/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mozilla-sha1/sha1.c b/mozilla-sha1/sha1.c index 7f6fc05e06..847531d19f 100644 --- a/mozilla-sha1/sha1.c +++ b/mozilla-sha1/sha1.c @@ -56,8 +56,8 @@ void SHA1_Init(SHA_CTX *ctx) { } -void SHA1_Update(SHA_CTX *ctx, void *_dataIn, int len) { - unsigned char *dataIn = _dataIn; +void SHA1_Update(SHA_CTX *ctx, const void *_dataIn, int len) { + const unsigned char *dataIn = _dataIn; int i; /* Read the data into W and process blocks as they get full |