crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
authorSzabolcs Nagy <nsz@port70.net>
Sun, 13 Jan 2013 22:18:32 +0000 (23:18 +0100)
committerSzabolcs Nagy <nsz@port70.net>
Sun, 13 Jan 2013 22:18:32 +0000 (23:18 +0100)
the internal sha2 hash sum functions had incorrect array size
in the prototype for the message digest argument, fixed by
using pointer so it is not misleading

src/crypt/crypt_md5.c
src/crypt/crypt_sha256.c
src/crypt/crypt_sha512.c

index 02f224448d7ea69dbadf9c0a95120640a31ebec1..70ab8b999a92a21b6174ba4d0ae76c43918c2725 100644 (file)
@@ -118,7 +118,7 @@ static void md5_init(struct md5 *s)
        s->h[3] = 0x10325476;
 }
 
-static void md5_sum(struct md5 *s, uint8_t md[16])
+static void md5_sum(struct md5 *s, uint8_t *md)
 {
        int i;
 
index 076e4b161268530e415c18e318afa0de4deb49ba..e01a208b7747c036c093e8a664f670fd29ba225e 100644 (file)
@@ -119,7 +119,7 @@ static void sha256_init(struct sha256 *s)
        s->h[7] = 0x5be0cd19;
 }
 
-static void sha256_sum(struct sha256 *s, uint8_t md[20])
+static void sha256_sum(struct sha256 *s, uint8_t *md)
 {
        int i;
 
index 0f1de814726ad7f97e23f7f371242ecc030278b8..8325d77c3749b0d8ae2094c5a77838cc953f5561 100644 (file)
@@ -136,7 +136,7 @@ static void sha512_init(struct sha512 *s)
        s->h[7] = 0x5be0cd19137e2179ULL;
 }
 
-static void sha512_sum(struct sha512 *s, uint8_t md[20])
+static void sha512_sum(struct sha512 *s, uint8_t *md)
 {
        int i;