diff options
author | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
commit | 6aee5fcbe7473a3cbac12b7e8482a7b98bef8be3 (patch) | |
tree | 91ec91d5c19eba9c2fe0e84b1c9dc7047a3de80e /dep/include/openssl/mdc2.h | |
parent | 2d2f433b4de1c35b22aaf07854fc0ee11fcb350d (diff) | |
parent | f385747164c3fb278c92ef46fbd6c3da6590bbf0 (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'dep/include/openssl/mdc2.h')
-rw-r--r-- | dep/include/openssl/mdc2.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dep/include/openssl/mdc2.h b/dep/include/openssl/mdc2.h index e5ba226cae8..1bab9a6abab 100644 --- a/dep/include/openssl/mdc2.h +++ b/dep/include/openssl/mdc2.h @@ -73,19 +73,19 @@ extern "C" { #define MDC2_DIGEST_LENGTH 16 typedef struct mdc2_ctx_st - { - int num; - unsigned char data[MDC2_BLOCK]; - DES_cblock h,hh; - int pad_type; /* either 1 or 2, default 1 */ - } MDC2_CTX; + { + int num; + unsigned char data[MDC2_BLOCK]; + DES_cblock h,hh; + int pad_type; /* either 1 or 2, default 1 */ + } MDC2_CTX; int MDC2_Init(MDC2_CTX *c); int MDC2_Update(MDC2_CTX *c, const unsigned char *data, unsigned long len); int MDC2_Final(unsigned char *md, MDC2_CTX *c); unsigned char *MDC2(const unsigned char *d, unsigned long n, - unsigned char *md); + unsigned char *md); #ifdef __cplusplus } |