summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/mdc2/mdc2dgst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/mdc2/mdc2dgst.c')
-rw-r--r--src/lib/libcrypto/mdc2/mdc2dgst.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/libcrypto/mdc2/mdc2dgst.c b/src/lib/libcrypto/mdc2/mdc2dgst.c
new file mode 100644
index 0000000000..4688982c5b
--- /dev/null
+++ b/src/lib/libcrypto/mdc2/mdc2dgst.c
@@ -0,0 +1,18 @@
1/* Public Domain */
2
3#include <openssl/mdc2.h>
4
5void
6MDC2_Init(MDC2_CTX *c)
7{
8}
9
10void
11MDC2_Update(MDC2_CTX *c, const unsigned char *in, unsigned long len)
12{
13}
14
15void
16MDC2_Final(unsigned char *md, MDC2_CTX *c)
17{
18}