diff options
author | miod <> | 2003-05-25 22:49:37 +0000 |
---|---|---|
committer | miod <> | 2003-05-25 22:49:37 +0000 |
commit | e6f6c0f63e8b5db592667f610abc492cacadefca (patch) | |
tree | 54aefad5e645e0edd70a99a68c7e792744ac7ca2 /src/lib/libcrypto/mdc2/mdc2dgst.c | |
parent | 64e4102ac6144c763a33eac43888cd0eb7e96d05 (diff) | |
download | openbsd-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.c | 18 |
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 | |||
5 | void | ||
6 | MDC2_Init(MDC2_CTX *c) | ||
7 | { | ||
8 | } | ||
9 | |||
10 | void | ||
11 | MDC2_Update(MDC2_CTX *c, const unsigned char *in, unsigned long len) | ||
12 | { | ||
13 | } | ||
14 | |||
15 | void | ||
16 | MDC2_Final(unsigned char *md, MDC2_CTX *c) | ||
17 | { | ||
18 | } | ||