~ubuntu-branches/ubuntu/trusty/lasso/trusty

« back to all changes in this revision

Viewing changes to lasso/keyprivate.h

  • Committer: Package Import Robot
  • Author(s): Frederic Peters
  • Date: 2014-01-07 13:22:21 UTC
  • mfrom: (1.1.11) (7.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20140107132221-htp0go0s9z5lqvj8
Tags: 2.4.0-1
* New upstream version.
* debian/control, debian/rules: use autoreconf
* debian/source/version: switch to 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
3
 *
 
4
 * Copyright (C) 2004-2011 Entr'ouvert
 
5
 * http://lasso.entrouvert.org
 
6
 *
 
7
 * Authors: See AUTHORS file in top-level directory.
 
8
 *
 
9
 * This program is free software; you can redistribute it and/or modify
 
10
 * it under the terms of the GNU General Public License as published by
 
11
 * the Free Software Foundation; either version 2 of the License, or
 
12
 * (at your option) any later version.
 
13
 *
 
14
 * This program is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU General Public License
 
20
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 
21
 */
 
22
 
 
23
#ifndef __LASSO_KEY_PRIVATE_H__
 
24
#define __LASSO_KEY_PRIVATE_H__
 
25
 
 
26
#include "xml/private.h"
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */
 
31
 
 
32
LassoSignatureContext lasso_key_get_signature_context(LassoKey *key);
 
33
LassoKeyType lasso_key_get_key_type(LassoKey *key);
 
34
 
 
35
#ifdef __cplusplus
 
36
}
 
37
#endif /* __cplusplus */
 
38
 
 
39
#endif /* __LASSO_KEY_PRIVATE_H__ */