pkiutilities/ocsp/inc/oids.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Define OIDs we use in OCSP - comment out the ones we don't use
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file 
       
    20  @internalComponent 
       
    21 */
       
    22 
       
    23 #ifndef __OCSP_OIDS_H__
       
    24 #define __OCSP_OIDS_H__
       
    25 
       
    26 // OCSP OIDs
       
    27 
       
    28 _LIT(KOCSPOidBasic,				"1.3.6.1.5.5.7.48.1.1");
       
    29 _LIT(KOCSPOidNonce,				"1.3.6.1.5.5.7.48.1.2");
       
    30 //_LIT(KOCSPOidCrl,				"1.3.6.1.5.5.7.48.1.3");
       
    31 _LIT(KOCSPOidResponse,			"1.3.6.1.5.5.7.48.1.4");
       
    32 _LIT(KOCSPOidNoCheck,			"1.3.6.1.5.5.7.48.1.5");
       
    33 _LIT(KOCSPOidArchiveCutoff,		"1.3.6.1.5.5.7.48.1.6");
       
    34 _LIT(KOCSPOidServiceLocator,	"1.3.6.1.5.5.7.48.1.7");
       
    35 _LIT(KOCSPOidOCSPSigning,		"1.3.6.1.5.5.7.3.9");
       
    36 
       
    37 const TUint KOCSPMaxOidEncodingLength = 20;
       
    38 
       
    39 #endif // __OCSP_OIDS_H__
       
    40 
       
    41 
       
    42