/**************************************************************************** * Copyright (C) 2012 ecsec GmbH. * All rights reserved. * Contact: ecsec GmbH (info@ecsec.de) * * This file is part of the Open eCard App. * * GNU General Public License Usage * This file may be used under the terms of the GNU General Public * License version 3.0 as published by the Free Software Foundation * and appearing in the file LICENSE.GPL included in the packaging of * this file. Please review the following information to ensure the * GNU General Public License version 3.0 requirements will be met: * http://www.gnu.org/copyleft/gpl.html. * * Other Usage * Alternatively, this file may be used in accordance with the terms * and conditions contained in a signed written agreement between * you and ecsec GmbH. * ***************************************************************************/ package org.openecard.crypto.common.asn1.eac.oid; /** * See BSI-TR-03110, version 2.10, part 3, section C. * * @author Moritz Horsch <horsch at cdc.informatik.tu-darmstadt.de> */ public class CVCertificatesObjectIdentifier extends EACObjectIdentifier { /** * Certificate Extensions. * id-extensions OBJECT IDENTIFIER ::= {bsi-de applictions(3) mrtd(1) 3} */ public static final String id_extensions = bsi_de + ".3.1.3"; /** * Certificate Description. * id-description OBJECT IDENTIFIER ::= {id-extensions 1} */ public static final String id_description = id_extensions + ".1"; /** * Certificate Description plain format. * id-plainFormat OBJECT IDENTIFIER ::= {id-description 1} */ public static final String id_plainFormat = id_description + ".1"; /** * Certificate Description html format. * id-htmlFormat OBJECT IDENTIFIER ::= {id-description 2} */ public static final String id_htmlFormat = id_description + ".2"; /** * Certificate Description pdf format. * id-pdfFormat OBJECT IDENTIFIER ::= {id-description 3} */ public static final String id_pdfFormat = id_description + ".3"; /** * Terminal Sector. * id-sector OBJECT IDENTIFIER ::= {id-extensions 2} */ public static final String id_sector = id_extensions + ".2"; /** * Roles and Authorization Levels. * id-roles OBJECT IDENTIFIER ::= {bsi-de applications(3) mrtd(1) 2} */ public static final String id_roles = bsi_de + ".3.1.2"; /** * Inspection Systems. * id-IS OBJECT IDENTIFIER ::= {id-roles 1} */ public static final String id_IS = id_roles + ".1"; /** * Authentication Terminals. * id-AT OBJECT IDENTIFIER ::= {id-roles 2} */ public static final String id_AT = id_roles + ".2"; /** * Signature Terminals. * id-ST OBJECT IDENTIFIER ::= {id-roles 3} */ public static final String id_ST = id_roles + ".3"; }