masqmail

diff src/md5/hmac_md5.h @ 366:41958685480d

Switched to `type *name' style Andrew Koenig's ``C Traps and Pitfalls'' (Ch.2.1) convinced me that it is best to go with the way C had been designed. The ``declaration reflects use'' concept conflicts with a ``type* name'' notation. Hence I switched.
author markus schnalke <meillo@marmaro.de>
date Thu, 22 Sep 2011 15:07:40 +0200
parents 0f36c0a46f82
children
line diff
     1.1 --- a/src/md5/hmac_md5.h	Wed Sep 14 12:20:40 2011 +0200
     1.2 +++ b/src/md5/hmac_md5.h	Thu Sep 22 15:07:40 2011 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  void hmac_md5(
     1.5 -	unsigned char* text,   /* pointer to the message */
     1.6 +	unsigned char *text,   /* pointer to the message */
     1.7  	int textlen,           /* length of the message */
     1.8 -	unsigned char* key,    /* pointer to the authentication key */
     1.9 +	unsigned char *key,    /* pointer to the authentication key */
    1.10  	int keylen,            /* length of the key */
    1.11 -	unsigned char* digest  /* pointer to allocated memory to store the computed HMAC */
    1.12 +	unsigned char *digest  /* pointer to allocated memory to store the computed HMAC */
    1.13  );