1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Public Domain */ #include <openssl/mdc2.h> void MDC2_Init(MDC2_CTX *c) { } void MDC2_Update(MDC2_CTX *c, const unsigned char *in, unsigned long len) { } void MDC2_Final(unsigned char *md, MDC2_CTX *c) { }