os/security/crypto/weakcryptospi/source/symmetric/arc4.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/crypto/weakcryptospi/source/symmetric/arc4.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,62 @@
     1.4 +/*
     1.5 +* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include "arc4.h"
    1.23 +#include "arc4shim.h"
    1.24 +
    1.25 +
    1.26 +EXPORT_C CARC4* CARC4::NewL(const TDesC8& aKey, TUint aDiscardBytes)
    1.27 +	{
    1.28 +	return CArc4Shim::NewL(aKey, aDiscardBytes);
    1.29 +	}
    1.30 +
    1.31 +EXPORT_C CARC4* CARC4::NewLC(const TDesC8& aKey, TUint aDiscardBytes)
    1.32 +	{
    1.33 +	return CArc4Shim::NewLC(aKey, aDiscardBytes);
    1.34 +	}
    1.35 +
    1.36 +CARC4::CARC4()
    1.37 +	{	
    1.38 +	}
    1.39 +
    1.40 +// All these methods have been replaced by the shim
    1.41 +#ifdef _BullseyeCoverage
    1.42 +#pragma suppress_warnings on
    1.43 +#pragma BullseyeCoverage off
    1.44 +#pragma suppress_warnings off
    1.45 +#endif
    1.46 +
    1.47 +void CARC4::Reset()
    1.48 +	{
    1.49 +	// Method replaced by shim 
    1.50 +	ASSERT(EFalse);		
    1.51 +	}
    1.52 +	
    1.53 +TInt CARC4::KeySize() const
    1.54 +	{
    1.55 +	// Method replaced by shim 
    1.56 +	ASSERT(EFalse);	
    1.57 +	return 0;
    1.58 +	}
    1.59 +
    1.60 +void CARC4::DoProcess(TDes8& /*aData*/)
    1.61 +	{
    1.62 +	// Method replaced by shim 
    1.63 +	ASSERT(EFalse);	
    1.64 +	}
    1.65 +