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 CTPKCS7Validator::CTPKCS7Validator (CPKIXCertChain* aChain, CPKIXValidationResult* aResult, TTime* aTime)
22 : CActive (0), iChain (aChain), iResult (aResult), iTime (aTime)
24 CActiveScheduler::Add (this);
27 CTPKCS7Validator::~CTPKCS7Validator ()
32 void CTPKCS7Validator::doValidate ()
34 iStatus = KRequestPending;
35 iChain->ValidateL (*iResult, *iTime, iStatus);
39 void CTPKCS7Validator::RunL ()
41 CActiveScheduler::Stop ();
44 void CTPKCS7Validator::DoCancel ()