diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-06-13 09:14:47 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-06-13 09:14:47 (GMT) |
commit | 68a0e2cb28663b5dc10c5283d5dd74544d55138a (patch) | |
tree | dc9ae6dd8d8af108d57ab8bfcc0e757f45df6531 /include/md5.h | |
parent | 909cf6a300b5a981e12cb4fee35da19b4af77820 (diff) |
(Re)change names of tng_md5_* to md5_*
In order to make it work with existing md5 include files
custom names should not be used.
Diffstat (limited to 'include/md5.h')
-rw-r--r-- | include/md5.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/md5.h b/include/md5.h index d618489..5aef902 100644 --- a/include/md5.h +++ b/include/md5.h @@ -89,13 +89,13 @@ extern "C" #endif /* DECLSPECDLLEXPORT */ /* Initialize the algorithm. */ -void DECLSPECDLLEXPORT tng_md5_init(md5_state_t *pms); +void DECLSPECDLLEXPORT md5_init(md5_state_t *pms); /* Append a string to the message. */ -void DECLSPECDLLEXPORT tng_md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); +void DECLSPECDLLEXPORT md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); /* Finish the message and return the digest. */ -void DECLSPECDLLEXPORT tng_md5_finish(md5_state_t *pms, md5_byte_t digest[16]); +void DECLSPECDLLEXPORT md5_finish(md5_state_t *pms, md5_byte_t digest[16]); #ifdef __cplusplus } /* end extern "C" */ |