00001 /* 00002 * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc. 00003 * MD5 Message-Digest Algorithm (RFC 1321). 00004 * 00005 * Homepage: 00006 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 00007 * 00008 * Author: 00009 * Alexander Peslyak, better known as Solar Designer <solar at openwall.com> 00010 * 00011 * This software was written by Alexander Peslyak in 2001. No copyright is 00012 * claimed, and the software is hereby placed in the public domain. 00013 * In case this attempt to disclaim copyright and place the software in the 00014 * public domain is deemed null and void, then the software is 00015 * Copyright (c) 2001 Alexander Peslyak and it is hereby released to the 00016 * general public under the following terms: 00017 * 00018 * Redistribution and use in source and binary forms, with or without 00019 * modification, are permitted. 00020 * 00021 * There's ABSOLUTELY NO WARRANTY, express or implied. 00022 * 00023 * See md5.c for more information. 00024 */ 00025 00026 #ifdef HAVE_OPENSSL 00027 #include <openssl/md5.h> 00028 #elif !defined(_MD5_H) 00029 #define _MD5_H 00030 00031 #include "rtps_export.h" 00032 00033 /* Any 32-bit or wider unsigned integer data type will do */ 00034 typedef unsigned int MD5_u32plus; 00035 00036 typedef struct { 00037 MD5_u32plus lo, hi; 00038 MD5_u32plus a, b, c, d; 00039 unsigned char buffer[64]; 00040 MD5_u32plus block[16]; 00041 } MD5_CTX; 00042 00043 OpenDDS_Rtps_Export void MD5_Init(MD5_CTX *ctx); 00044 OpenDDS_Rtps_Export void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); 00045 OpenDDS_Rtps_Export void MD5_Final(unsigned char *result, MD5_CTX *ctx); 00046 00047 #endif