diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-04-14 08:36:56 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-04-14 08:36:56 +0100 |
commit | 51b81e9b6e76b8422b556645f390578a9cc20f32 (patch) | |
tree | 98139c679ee0ad80f5d682704c37120bed1473ea /lib | |
parent | e50767188483e806653c0e115f0e8f624f8208fa (diff) |
md5: Corrected code style for some pointer arguments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/md5.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -39,19 +39,19 @@ typedef struct md5_ctx MD5_CTX; -static void MD5_Init(MD5_CTX * ctx) +static void MD5_Init(MD5_CTX *ctx) { md5_init(ctx); } -static void MD5_Update(MD5_CTX * ctx, +static void MD5_Update(MD5_CTX *ctx, const unsigned char *input, unsigned int inputLen) { md5_update(ctx, inputLen, input); } -static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx) +static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx) { md5_digest(ctx, 16, digest); } @@ -65,19 +65,19 @@ static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx) typedef gcry_md_hd_t MD5_CTX; -static void MD5_Init(MD5_CTX * ctx) +static void MD5_Init(MD5_CTX *ctx) { gcry_md_open(ctx, GCRY_MD_MD5, 0); } -static void MD5_Update(MD5_CTX * ctx, +static void MD5_Update(MD5_CTX *ctx, const unsigned char *input, unsigned int inputLen) { gcry_md_write(*ctx, input, inputLen); } -static void MD5_Final(unsigned char digest[16], MD5_CTX * ctx) +static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx) { memcpy(digest, gcry_md_read(*ctx, 0), 16); gcry_md_close(*ctx); |