sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * General Security Definitions sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef SECURITYDEFSCONST_H sl@0: #define SECURITYDEFSCONST_H sl@0: sl@0: // Certificate Applicability UIDs sl@0: sl@0: /** sl@0: * This UID is associated with certificates which are trusted for sl@0: * software installation of native applications. sl@0: * sl@0: * @see MCertStore::Applications sl@0: * @see MCTWritableCertStore::SetApplicability sl@0: * sl@0: */ sl@0: const TUid KSwiApplicabilityUid = {0x100042AB}; sl@0: sl@0: /** sl@0: * This UID is associated with certificates which are trusted for sl@0: * OCSP checks. sl@0: * sl@0: * @see MCertStore::Applications sl@0: * @see MCTWritableCertStore::SetApplicability sl@0: * sl@0: */ sl@0: const TUid KSwiOcspApplicabilityUid = {0x1000A8B6}; sl@0: sl@0: /** sl@0: * This UID is associated with certificates which are trusted for sl@0: * Java midlet installation. sl@0: * sl@0: * @see MCertStore::Applications sl@0: * @see MCTWritableCertStore::SetApplicability sl@0: * sl@0: */ sl@0: const TUid KMidletInstallApplicabilityUid = {0x101F9B28}; sl@0: sl@0: /** sl@0: * This UID is associated with certificates which are trusted for sl@0: * SSL/TLS connectivity. sl@0: * sl@0: * @see MCertStore::Applications sl@0: * @see MCTWritableCertStore::SetApplicability sl@0: * sl@0: */ sl@0: const TUid KTlsApplicabilityUid = {0x1000183D}; sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for TLS WWW server authentication. sl@0: * sl@0: */ sl@0: _LIT(KServerAuthOID,"1.3.6.1.5.5.7.3.1"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for TLS WWW client authentication. sl@0: * sl@0: */ sl@0: // SSL Client sl@0: _LIT(KClientAuthOID,"1.3.6.1.5.5.7.3.2"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for signing of downloadable executable code. sl@0: * sl@0: */ sl@0: _LIT(KCodeSigningOID,"1.3.6.1.5.5.7.3.3"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for email protection . sl@0: * sl@0: */ sl@0: _LIT(KEmailProtectionOID,"1.3.6.1.5.5.7.3.4"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for Ipsec end system. sl@0: * sl@0: */ sl@0: _LIT(KIpsecEndSystemOID,"1.3.6.1.5.5.7.3.5"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for Ipsec tunnel. sl@0: * sl@0: */ sl@0: _LIT(KIpsecTunnelOID,"1.3.6.1.5.5.7.3.6"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for Ipsec user. sl@0: * sl@0: */ sl@0: _LIT(KIpsecUserOID, "1.3.6.1.5.5.7.3.7"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for binding the hash of an object to a time. sl@0: * sl@0: */ sl@0: _LIT(KTimeStampingOID,"1.3.6.1.5.5.7.3.8"); sl@0: sl@0: /** sl@0: * This OID is associated with X.509 certificates sl@0: * trusted for signing OCSP responses. sl@0: * sl@0: */ sl@0: _LIT(KOCSPSigningOID,"1.3.6.1.5.5.7.3.9"); sl@0: sl@0: sl@0: #endif