Update contrib.
2 * Copyright (c) 2003-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.
26 // 32bit endianness independent MD5 implementation
32 EXPORT_C CMD5* CMD5::NewL(void)
34 CMD5Shim* self=CMD5Shim::NewL();
39 EXPORT_C CMD5::~CMD5(void)
43 // All these methods have been replaced by the shim
44 #ifdef _BullseyeCoverage
45 #pragma suppress_warnings on
46 #pragma BullseyeCoverage off
47 #pragma suppress_warnings off
49 EXPORT_C CMessageDigest* CMD5::ReplicateL(void)
51 // Method replaced by shim
56 EXPORT_C TPtrC8 CMD5::Hash(const TDesC8& /*aMessage*/)
58 // Method replaced by shim
63 EXPORT_C CMessageDigest* CMD5::CopyL(void)
65 // Method replaced by shim
70 EXPORT_C TInt CMD5::BlockSize(void)
72 // Method replaced by shim
74 return KErrNotSupported;
77 EXPORT_C TInt CMD5::HashSize(void)
79 // Method replaced by shim
81 return KErrNotSupported;
84 EXPORT_C void CMD5::Reset(void)
86 // Method replaced by shim
90 EXPORT_C void CMD5::Update(const TDesC8& /*aMessage*/)
92 // Method replaced by shim
96 EXPORT_C TPtrC8 CMD5::Final(const TDesC8& /*aMessage*/)
98 // Method replaced by shim
103 EXPORT_C TPtrC8 CMD5::Final()
105 // Method replaced by shim
110 void CMD5::RestoreState()
112 // Method replaced by shim
116 void CMD5::StoreState()
118 // Method replaced by shim