From 68004c84d6b852cfd4096cd211d2f8d3ff1d9f48 Mon Sep 17 00:00:00 2001 From: mmentovai Date: Fri, 28 Sep 2007 18:14:48 +0000 Subject: Solaris version of symbol dumper (#207). Patch by Alfred Peng. r=me http://groups.google.com/group/google-breakpad-dev/browse_thread/thread/e4cbdbf7ddaf7f51 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@218 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/linux/md5.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/common/linux/md5.h (limited to 'src/common/linux/md5.h') diff --git a/src/common/linux/md5.h b/src/common/linux/md5.h deleted file mode 100644 index 03a13d6f..00000000 --- a/src/common/linux/md5.h +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2007 Google Inc. All Rights Reserved. -// Author: liuli@google.com (Liu Li) -#ifndef COMMON_LINUX_MD5_H__ -#define COMMON_LINUX_MD5_H__ - -#include - -typedef uint32_t u32; -typedef uint8_t u8; - -struct MD5Context { - u32 buf[4]; - u32 bits[2]; - u8 in[64]; -}; - -#ifdef __cplusplus -extern "C" { -#endif // __cplusplus - -void MD5Init(struct MD5Context *ctx); - -void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len); - -void MD5Final(unsigned char digest[16], struct MD5Context *ctx); - -#ifdef __cplusplus -} -#endif - -#endif // COMMON_LINUX_MD5_H__ -- cgit v1.2.1