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.
21 EXPORT_C CDSAVerifier* CDSAVerifier::NewL(const CDSAPublicKey& aKey)
23 return CDsaVerifierShim::NewL(aKey);
26 EXPORT_C CDSAVerifier* CDSAVerifier::NewLC(const CDSAPublicKey& aKey)
28 return CDsaVerifierShim::NewLC(aKey);
31 CDSAVerifier::CDSAVerifier(const CDSAPublicKey& aKey)
36 // All these methods have been replaced by the shim
37 #ifdef _BullseyeCoverage
38 #pragma suppress_warnings on
39 #pragma BullseyeCoverage off
40 #pragma suppress_warnings off
42 TInt CDSAVerifier::MaxInputLength(void) const
44 // Method replaced by shim
49 TBool CDSAVerifier::VerifyL(const TDesC8& /*aInput*/, const CDSASignature& /*aSignature*/) const
51 // Method replaced by shim
52 User::Leave(KErrNotSupported);