diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-19 15:39:33 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-19 15:39:33 +0000 |
commit | c210b6ff1ef66fd972c40bcc07db28231099e7b4 (patch) | |
tree | f274afcfff721976a71b3389f373ab759c8e5fa3 /cpp/src/Ice/MessageAuthenticator.h | |
parent | Updated the properties added to the SSL extension, and those added for (diff) | |
download | ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.tar.bz2 ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.tar.xz ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.zip |
Removed the SUDP implementation (for now). See the tag sudp in CVS to
recover.
Diffstat (limited to 'cpp/src/Ice/MessageAuthenticator.h')
-rw-r--r-- | cpp/src/Ice/MessageAuthenticator.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/cpp/src/Ice/MessageAuthenticator.h b/cpp/src/Ice/MessageAuthenticator.h deleted file mode 100644 index a829cc4e27b..00000000000 --- a/cpp/src/Ice/MessageAuthenticator.h +++ /dev/null @@ -1,43 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2002 -// MutableRealms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef ICE_MESSAGE_AUTHENTICATOR_H -#define ICE_MESSAGE_AUTHENTICATOR_H - -#include <IceUtil/Shared.h> -#include <Ice/Stream.h> -#include <Ice/MessageAuthenticatorF.h> - -namespace SecureUdp -{ - -class MessageAuthenticator : public IceUtil::Shared -{ - -public: - MessageAuthenticator(); - MessageAuthenticator(const Ice::ByteSeq&); - virtual ~MessageAuthenticator(); - - virtual Ice::ByteSeq computeMAC(const Ice::ByteSeq&) const; - - virtual bool authenticate(const Ice::ByteSeq&, const Ice::ByteSeq&); - - virtual const Ice::ByteSeq& getMACKey() const; - -protected: - Ice::ByteSeq _macKeyBytes; - -}; - -} - -#endif - |