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.
23 EXPORT_C CRSASigner::CRSASigner(void)
27 /* CRSAPKCS1v15Signer */
28 EXPORT_C CRSAPKCS1v15Signer* CRSAPKCS1v15Signer::NewL(const CRSAPrivateKey& aKey)
30 return CRSAPKCS1v15SignerShim::NewL(aKey);
33 EXPORT_C CRSAPKCS1v15Signer* CRSAPKCS1v15Signer::NewLC(const CRSAPrivateKey& aKey)
35 return CRSAPKCS1v15SignerShim::NewLC(aKey);
38 CRSAPKCS1v15Signer::CRSAPKCS1v15Signer(const CRSAPrivateKey& aKey)
43 CRSAPKCS1v15Signer::~CRSAPKCS1v15Signer(void)
47 // All these methods have been replaced by the shim
48 #ifdef _BullseyeCoverage
49 #pragma suppress_warnings on
50 #pragma BullseyeCoverage off
51 #pragma suppress_warnings off
53 TInt CRSAPKCS1v15Signer::MaxInputLength(void) const
55 // Method replaced by shim
60 TInt CRSAPKCS1v15Signer::MaxOutputLength(void) const
62 // Method replaced by shim
67 CRSASignature* CRSAPKCS1v15Signer::SignL(const TDesC8& /*aInput*/) const
69 // Method replaced by shim
70 User::Leave(KErrNotSupported);
74 void CRSAPKCS1v15Signer::ConstructL(void)
76 // Method replaced by shim
77 User::Leave(KErrNotSupported);