diff -r 8ee3d1d01659 -r e6ba5d9eabc1 crypto/weakcryptospi/source/random/sha1shim.h --- a/crypto/weakcryptospi/source/random/sha1shim.h Mon Mar 08 21:45:09 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -/* -* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* hashshim.h -* hash shim classes definition -* -*/ - - -/** - @file - @internalComponent - @released -*/ - -#ifndef __HASHSHIM_H__ -#define __HASHSHIM_H__ - -#include -#include -#include -#include "sha1impl.h" - -// -// SHA1 shim class -// - -NONSHARABLE_CLASS(CSHA1Shim) : public CMessageDigest - { -public: - static CSHA1Shim* NewL(); - static CSHA1Shim* NewLC(); - ~CSHA1Shim(); - CMessageDigest* CopyL(); - TInt BlockSize(); - TInt HashSize() ; - void Update(const TDesC8& aMessage); - TPtrC8 Final(const TDesC8& aMessage); - TPtrC8 Final(); - void Reset(); - TPtrC8 Hash(const TDesC8& aMessage); - CMessageDigest* ReplicateL(); - void RestoreState(); - void StoreState(); - -private: - CSHA1Shim(); - void ConstructL(); - -private: - SoftwareCrypto::CSHA1Impl* iHashImpl; - }; - -#endif