1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Public Domain */ #include <stddef.h> #include <openssl/mdc2.h> unsigned char *MDC2(const unsigned char *d, unsigned long n, unsigned char *md) { static unsigned char m[MDC2_DIGEST_LENGTH]; if (md == NULL) return (m); else return (md); }