Don't lie about array parameters

This commit is contained in:
Tristan Le Guern
2015-09-27 21:26:58 +02:00
committed by Dmitry Podgorny
parent 0acec5c335
commit 93f9a5d1e8
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ typedef struct {
void SHA1_Init(SHA1_CTX* context);
void SHA1_Update(SHA1_CTX* context, const uint8_t* data, const size_t len);
void SHA1_Final(SHA1_CTX* context, uint8_t digest[SHA1_DIGEST_SIZE]);
void SHA1_Final(SHA1_CTX* context, uint8_t *digest);
#ifdef __cplusplus
}