/* Copyright (C) 2003 Frédéric Giudicelli (contact_nos@yahoo.com). All rights reserved. This product includes cryptographic software written by Eric Young (eay@cryptsoft.com) This program is released under the GPL with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ ASN1_SEQUENCE(LOCAL_RA_CONF, LocalEntityConf) = { ASN1_SIMPLE(LOCAL_RA_CONF, conf, ENTITY_CONF), ASN1_SIMPLE(LOCAL_RA_CONF, cas, INTERNAL_PKI_CA), }ASN1_SEQUENCE_END(LOCAL_RA_CONF) IMPLEMENT_ASN1_ENCRYPT_SIGN(LOCAL_RA_CONF) <-- BEGIN H HEADER COPY BLOCK --> #include #include #include "CA_Handler.h" #include "Entity.h" /*! This structure represent the local conf. */ typedef struct st_LOCAL_RA_CONF { ENTITY_CONF * conf; //!< The conf. INTERNAL_PKI_CA * cas; //!< The PKI internal CA. }LOCAL_RA_CONF; DECLARE_ASN1_ITEM(LOCAL_RA_CONF) <-- END H HEADER COPY BLOCK -->