summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/mdc2/mdc2dgst.c
blob: 4688982c5b52fe02f4644d904aec20878238c979 (plain)
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)
{
}