diff options
Diffstat (limited to 'text_cmds/sort/commoncrypto.h')
| -rw-r--r-- | text_cmds/sort/commoncrypto.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/text_cmds/sort/commoncrypto.h b/text_cmds/sort/commoncrypto.h new file mode 100644 index 0000000..5170b51 --- /dev/null +++ b/text_cmds/sort/commoncrypto.h @@ -0,0 +1,8 @@ +#include <CommonCrypto/CommonDigest.h> + +#define MD5_CTX CC_MD5_CTX +#define MD5Init CC_MD5_Init +#define MD5Update CC_MD5_Update + +char *MD5End(CC_MD5_CTX *, char *); +char *MD5File(const char *, char *); |
