diff options
Diffstat (limited to 'beecrypt/hmacmd5.h')
-rw-r--r-- | beecrypt/hmacmd5.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/beecrypt/hmacmd5.h b/beecrypt/hmacmd5.h index 28bf4d6c9..30737bb16 100644 --- a/beecrypt/hmacmd5.h +++ b/beecrypt/hmacmd5.h @@ -46,31 +46,43 @@ extern "C" { /** \ingroup HMAC_md5_m */ -/*@unused@*/ extern BEEDLLAPI const keyedHashFunction hmacmd5; +extern BEEDLLAPI const keyedHashFunction hmacmd5; /** \ingroup HMAC_md5_m */ +/*@-exportlocal@*/ BEEDLLAPI int hmacmd5Setup (hmacmd5Param* sp, const uint32* key, int keybits) + /*@globals md5 @*/ /*@modifies sp @*/; +/*@=exportlocal@*/ /** \ingroup HMAC_md5_m */ +/*@-exportlocal@*/ BEEDLLAPI int hmacmd5Reset (hmacmd5Param* sp) + /*@globals md5 @*/ /*@modifies sp @*/; +/*@=exportlocal@*/ /** \ingroup HMAC_md5_m */ +/*@-exportlocal@*/ BEEDLLAPI int hmacmd5Update(hmacmd5Param* sp, const byte* data, int size) + /*@globals md5 @*/ /*@modifies sp @*/; +/*@=exportlocal@*/ /** \ingroup HMAC_md5_m */ +/*@-exportlocal@*/ BEEDLLAPI int hmacmd5Digest(hmacmd5Param* sp, uint32* data) + /*@globals md5 @*/ /*@modifies sp, data @*/; +/*@=exportlocal@*/ #ifdef __cplusplus } |