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 CDSASigner* CDSASigner::NewL(const CDSAPrivateKey& aKey)
23 return CDsaSignerShim::NewL(aKey);
26 EXPORT_C CDSASigner* CDSASigner::NewLC(const CDSAPrivateKey& aKey)
28 return CDsaSignerShim::NewLC(aKey);
31 CDSASigner::CDSASigner(const CDSAPrivateKey& 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 CDSASigner::MaxInputLength(void) const
44 // Method replaced by shim
49 CDSASignature* CDSASigner::SignL(const TDesC8& /*aInput*/) const
51 // Method replaced by shim
52 User::Leave(KErrNotSupported);