os/security/cryptomgmtlibs/cryptotokenfw/inc/securitydefsconst.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
* General Security Definitions
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file 
sl@0
    22
 @publishedPartner
sl@0
    23
 @released
sl@0
    24
*/
sl@0
    25
 
sl@0
    26
#ifndef SECURITYDEFSCONST_H
sl@0
    27
#define SECURITYDEFSCONST_H
sl@0
    28
sl@0
    29
// Certificate Applicability UIDs
sl@0
    30
sl@0
    31
/**
sl@0
    32
 * This UID is associated with certificates which are trusted for 
sl@0
    33
 * software installation of native applications. 
sl@0
    34
 *
sl@0
    35
 * @see MCertStore::Applications
sl@0
    36
 * @see MCTWritableCertStore::SetApplicability
sl@0
    37
 *
sl@0
    38
 */
sl@0
    39
const TUid KSwiApplicabilityUid = {0x100042AB};
sl@0
    40
sl@0
    41
/**
sl@0
    42
 * This UID is associated with certificates which are trusted for 
sl@0
    43
 * OCSP checks.
sl@0
    44
 *
sl@0
    45
 * @see MCertStore::Applications
sl@0
    46
 * @see MCTWritableCertStore::SetApplicability
sl@0
    47
 *
sl@0
    48
 */
sl@0
    49
const TUid KSwiOcspApplicabilityUid = {0x1000A8B6};
sl@0
    50
sl@0
    51
/**
sl@0
    52
 * This UID is associated with certificates which are trusted for 
sl@0
    53
 * Java midlet installation.
sl@0
    54
 *
sl@0
    55
 * @see MCertStore::Applications
sl@0
    56
 * @see MCTWritableCertStore::SetApplicability
sl@0
    57
 *
sl@0
    58
 */
sl@0
    59
const TUid KMidletInstallApplicabilityUid = {0x101F9B28};
sl@0
    60
sl@0
    61
/**
sl@0
    62
 * This UID is associated with certificates which are trusted for 
sl@0
    63
 * SSL/TLS connectivity.
sl@0
    64
 *
sl@0
    65
 * @see MCertStore::Applications
sl@0
    66
 * @see MCTWritableCertStore::SetApplicability
sl@0
    67
 *
sl@0
    68
 */
sl@0
    69
const TUid KTlsApplicabilityUid = {0x1000183D};
sl@0
    70
sl@0
    71
/**
sl@0
    72
 * This OID is associated with X.509 certificates
sl@0
    73
 * trusted for TLS WWW server authentication.
sl@0
    74
 *
sl@0
    75
 */
sl@0
    76
_LIT(KServerAuthOID,"1.3.6.1.5.5.7.3.1");
sl@0
    77
sl@0
    78
/**
sl@0
    79
 * This OID is associated with X.509 certificates
sl@0
    80
 * trusted for TLS WWW client authentication.
sl@0
    81
 *
sl@0
    82
 */
sl@0
    83
 // SSL Client
sl@0
    84
 _LIT(KClientAuthOID,"1.3.6.1.5.5.7.3.2");
sl@0
    85
sl@0
    86
/**
sl@0
    87
 * This OID is associated with X.509 certificates
sl@0
    88
 * trusted for signing of downloadable executable code.
sl@0
    89
 *
sl@0
    90
 */
sl@0
    91
_LIT(KCodeSigningOID,"1.3.6.1.5.5.7.3.3");
sl@0
    92
sl@0
    93
/**
sl@0
    94
 * This OID is associated with X.509 certificates
sl@0
    95
 * trusted for email protection .
sl@0
    96
 *
sl@0
    97
 */
sl@0
    98
_LIT(KEmailProtectionOID,"1.3.6.1.5.5.7.3.4");
sl@0
    99
sl@0
   100
/**
sl@0
   101
 * This OID is associated with X.509 certificates
sl@0
   102
 * trusted for Ipsec end system.
sl@0
   103
 *
sl@0
   104
 */
sl@0
   105
_LIT(KIpsecEndSystemOID,"1.3.6.1.5.5.7.3.5");
sl@0
   106
sl@0
   107
/**
sl@0
   108
 * This OID is associated with X.509 certificates
sl@0
   109
 * trusted for Ipsec tunnel.
sl@0
   110
 *
sl@0
   111
 */
sl@0
   112
_LIT(KIpsecTunnelOID,"1.3.6.1.5.5.7.3.6");
sl@0
   113
sl@0
   114
/**
sl@0
   115
 * This OID is associated with X.509 certificates
sl@0
   116
 * trusted for Ipsec user.
sl@0
   117
 *
sl@0
   118
 */
sl@0
   119
_LIT(KIpsecUserOID, "1.3.6.1.5.5.7.3.7");
sl@0
   120
sl@0
   121
/**
sl@0
   122
 * This OID is associated with X.509 certificates
sl@0
   123
 * trusted for binding the hash of an object to a time.
sl@0
   124
 *
sl@0
   125
 */
sl@0
   126
_LIT(KTimeStampingOID,"1.3.6.1.5.5.7.3.8");
sl@0
   127
sl@0
   128
/**
sl@0
   129
 * This OID is associated with X.509 certificates
sl@0
   130
 * trusted for signing OCSP responses.
sl@0
   131
 *
sl@0
   132
 */
sl@0
   133
_LIT(KOCSPSigningOID,"1.3.6.1.5.5.7.3.9");
sl@0
   134
sl@0
   135
sl@0
   136
#endif