12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #include <stdio.h>
- #include "cryptlib.h"
- #include <openssl/md2.h>
- unsigned char *MD2(const unsigned char *d, size_t n, unsigned char *md)
- {
- MD2_CTX c;
- static unsigned char m[MD2_DIGEST_LENGTH];
- if (md == NULL)
- md = m;
- if (!MD2_Init(&c))
- return NULL;
- #ifndef CHARSET_EBCDIC
- MD2_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);
- MD2_Update(&c, temp, chunk);
- n -= chunk;
- d += chunk;
- }
- }
- #endif
- MD2_Final(md, &c);
- OPENSSL_cleanse(&c, sizeof(c));
- return (md);
- }
|