diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
commit | 08ec7524df324e627bbb8d93c509f0d90badbe3b (patch) | |
tree | a640ae99a5e35b210352150feef4f71832b265c5 /cpp/include/IceUtil/MD5.h | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.bz2 ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.xz ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.zip |
IceUtil cleanup (first commit)
Diffstat (limited to 'cpp/include/IceUtil/MD5.h')
-rw-r--r-- | cpp/include/IceUtil/MD5.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/cpp/include/IceUtil/MD5.h b/cpp/include/IceUtil/MD5.h deleted file mode 100644 index 568a9212423..00000000000 --- a/cpp/include/IceUtil/MD5.h +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICE_UTIL_MD5_H -#define ICE_UTIL_MD5_H - -#include <IceUtil/Config.h> - -extern "C" -{ -struct md5_state_s; -} - -namespace IceUtil -{ - -class ICE_UTIL_API MD5 -{ -public: - - MD5(); - MD5(const unsigned char*, int); - ~MD5(); - - void update(const unsigned char*, int); - void finish(); - - void getDigest(unsigned char*) const; - -private: - - md5_state_s* _state; - unsigned char _digest[16]; -}; - -} - -#endif |