Update contrib.
2 * Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 EXPORT_C CRC2Encryptor* CRC2Encryptor::NewL(const TDesC8& aKey, TInt aEffectiveKeyLenBits)
29 return CRC2EncryptorShim::NewL(aKey, aEffectiveKeyLenBits);
32 EXPORT_C CRC2Encryptor* CRC2Encryptor::NewLC(const TDesC8& aKey, TInt aEffectiveKeyLenBits)
34 return CRC2EncryptorShim::NewLC(aKey, aEffectiveKeyLenBits);
37 CRC2Encryptor::CRC2Encryptor()
42 EXPORT_C CRC2Decryptor* CRC2Decryptor::NewL(const TDesC8& aKey, TInt aEffectiveKeyLenBits)
44 return CRC2DecryptorShim::NewL(aKey, aEffectiveKeyLenBits);
47 EXPORT_C CRC2Decryptor* CRC2Decryptor::NewLC(const TDesC8& aKey, TInt aEffectiveKeyLenBits)
49 return CRC2DecryptorShim::NewLC(aKey, aEffectiveKeyLenBits);
52 CRC2Decryptor::CRC2Decryptor()
56 // All these methods have been replaced by the shim
57 #ifdef _BullseyeCoverage
58 #pragma suppress_warnings on
59 #pragma BullseyeCoverage off
60 #pragma suppress_warnings off
63 TInt CRC2::BlockSize() const
65 // Method replaced by shim
70 TInt CRC2::KeySize() const
72 // Method replaced by shim
79 // Method replaced by shim
83 void CRC2::SetKey(const TDesC8& /*aKey*/, TInt /*aEffectiveKeyLenBits*/)
85 // Method replaced by shim
89 void CRC2Decryptor::Transform(TDes8& /*aBlock*/)
91 // Method replaced by shim
95 void CRC2Encryptor::Transform(TDes8& /*aBlock*/)
97 // Method replaced by shim