dependencies/swi/sispackagetrust.h
author fdim
Wed, 31 Mar 2010 12:29:10 +0300
branchv5backport
changeset 43 690b4f151c12
parent 31 a3e98f9c292b
permissions -rw-r--r--
Added folder hs_app_idlefw, files there have 'hs_app' prefix(content edited). homescreen_srv compiles with these changes. Although more warnings appear. Also I've changed uid of homescreen.exe, ailaunch.exe. Renamed idlefw files, located in hs_app_idlefw.

/*
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
* SisTrustStatus - Trust enumeration for SIS packages
*
*/


/**
 @file 
 @released
 @internalComponent
*/

#ifndef __SISTRUSTSTATUS_H__
#define __SISTRUSTSTATUS_H__

#include <e32std.h>

namespace Swi
{
/**
 * @internalComponent
 * @released
 */
enum TSisPackageTrust
		{
		ESisPackageUnsignedOrSelfSigned = 0,							///< Untrusted - Application is unsigned or self-signed
		ESisPackageValidationFailed = 50,								///< Untrusted - Application's Certificate chain validation failed
		ESisPackageCertificateChainNoTrustAnchor = 100,					///< Untrusted - Application's Certificate chain validated but no matching issuer certificate could be found in the certstore.
		ESisPackageCertificateChainValidatedToTrustAnchor = 200,		///< Trusted - Application's Certificate chain validated to an issuer certificate in the certstore
		ESisPackageChainValidatedToTrustAnchorOCSPTransientError = 300,	///< Trusted - Application's Certificate chain validated and OCSP failed with a transient error
		ESisPackageChainValidatedToTrustAnchorAndOCSPValid = 400,		///< Trusted - Application's Certificate chain validated and OCSP response was ok
		ESisPackageBuiltIntoRom = 500									///< Trusted - Application is built into device ROM
		};
} // namespace
#endif