remove a comment that shouldn't have been there any more
[openssl.git] / crypto / md5 / md5_one.c
index c98721f4d8d4222edfaacd1443e5148a2f3e9e2e..b89dec850d2d5b20ed511227cac38a986b2380cd 100644 (file)
 #include <string.h>
 #include <openssl/md5.h>
 
 #include <string.h>
 #include <openssl/md5.h>
 
-unsigned char *MD5(unsigned char *d, unsigned long n, unsigned char *md)
+#ifdef CHARSET_EBCDIC
+#include <openssl/ebcdic.h>
+#endif
+
+unsigned char *MD5(const unsigned char *d, unsigned long n, unsigned char *md)
        {
        MD5_CTX c;
        static unsigned char m[MD5_DIGEST_LENGTH];
 
        if (md == NULL) md=m;
        MD5_Init(&c);
        {
        MD5_CTX c;
        static unsigned char m[MD5_DIGEST_LENGTH];
 
        if (md == NULL) md=m;
        MD5_Init(&c);
+#ifndef CHARSET_EBCDIC
        MD5_Update(&c,d,n);
        MD5_Update(&c,d,n);
+#else
+       {
+               char temp[1024];
+               unsigned long chunk;
+
+               while (n > 0)
+               {
+                       chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
+                       ebcdic2ascii(temp, d, chunk);
+                       MD5_Update(&c,temp,chunk);
+                       n -= chunk;
+                       d += chunk;
+               }
+       }
+#endif
        MD5_Final(md,&c);
        memset(&c,0,sizeof(c)); /* security consideration */
        return(md);
        MD5_Final(md,&c);
        memset(&c,0,sizeof(c)); /* security consideration */
        return(md);