summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/mdc2/mdc2dgst.c
diff options
context:
space:
mode:
authormiod <>2003-05-25 22:49:37 +0000
committermiod <>2003-05-25 22:49:37 +0000
commite6f6c0f63e8b5db592667f610abc492cacadefca (patch)
tree54aefad5e645e0edd70a99a68c7e792744ac7ca2 /src/lib/libcrypto/mdc2/mdc2dgst.c
parent64e4102ac6144c763a33eac43888cd0eb7e96d05 (diff)
downloadopenbsd-OPENBSD_3_1.tar.gz
openbsd-OPENBSD_3_1.tar.bz2
openbsd-OPENBSD_3_1.zip
Bring back these two files to the 3.1 branch, after the latest libssl updateOPENBSD_3_1
destroyed them by mistake. Sorry for the inconvenience, 3.1-STABLE should build again now.
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}