Blame lasso/keyprivate.h

Packit 228f82
/*
Packit 228f82
 * Lasso - A free implementation of the Liberty Alliance specifications.
Packit 228f82
 *
Packit 228f82
 * Copyright (C) 2004-2011 Entr'ouvert
Packit 228f82
 * http://lasso.entrouvert.org
Packit 228f82
 *
Packit 228f82
 * Authors: See AUTHORS file in top-level directory.
Packit 228f82
 *
Packit 228f82
 * This program is free software; you can redistribute it and/or modify
Packit 228f82
 * it under the terms of the GNU General Public License as published by
Packit 228f82
 * the Free Software Foundation; either version 2 of the License, or
Packit 228f82
 * (at your option) any later version.
Packit 228f82
 *
Packit 228f82
 * This program is distributed in the hope that it will be useful,
Packit 228f82
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 228f82
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 228f82
 * GNU General Public License for more details.
Packit 228f82
 *
Packit 228f82
 * You should have received a copy of the GNU General Public License
Packit 228f82
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 228f82
 */
Packit 228f82
Packit 228f82
#ifndef __LASSO_KEY_PRIVATE_H__
Packit 228f82
#define __LASSO_KEY_PRIVATE_H__
Packit 228f82
Packit 228f82
#include "xml/private.h"
Packit 228f82
Packit 228f82
#ifdef __cplusplus
Packit 228f82
extern "C" {
Packit 228f82
#endif /* __cplusplus */
Packit 228f82
Packit 228f82
LassoSignatureContext lasso_key_get_signature_context(LassoKey *key);
Packit 228f82
LassoKeyType lasso_key_get_key_type(LassoKey *key);
Packit 228f82
Packit 228f82
#ifdef __cplusplus
Packit 228f82
}
Packit 228f82
#endif /* __cplusplus */
Packit 228f82
Packit 228f82
#endif /* __LASSO_KEY_PRIVATE_H__ */