~ubuntu-branches/debian/stretch/gnomint/stretch

« back to all changes in this revision

Viewing changes to src/export.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-04-05 11:20:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090405112000-73unnusr8wbnxau9
Tags: 0.9.9-1
* Merging upstream version 0.9.9.
* Updating rules to current state of the art.
* Upgrading package to standards 3.8.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  gnoMint: a graphical interface for managing a certification authority
 
2
//  Copyright (C) 2006-2009 David Marín Carreño <davefx@gmail.com>
 
3
//
 
4
//  This file is part of gnoMint.
 
5
//
 
6
//  gnoMint is free software; you can redistribute it and/or modify
 
7
//  it under the terms of the GNU General Public License as published by
 
8
//  the Free Software Foundation; either version 3 of the License, or   
 
9
//  (at your option) any later version.
 
10
//
 
11
//  This program is distributed in the hope that it will be useful,
 
12
//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
13
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
 
14
//  GNU General Public License for more details.
 
15
//
 
16
//  You should have received a copy of the GNU General Public License
 
17
//  along with this program; if not, write to the Free Software
 
18
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 
 
20
#ifndef _EXPORT_H_
 
21
#define _EXPORT_H_
 
22
 
 
23
#include <glib.h>
 
24
#include <glib/gi18n.h>
 
25
 
 
26
gchar *export_dh_param (guint dh_size, gchar *filename);
 
27
 
 
28
gchar * export_private_pkcs8 (guint64 id, gint type, gchar *filename);
 
29
 
 
30
gchar * export_private_pem (guint64 id, gint type, gchar *filename);
 
31
 
 
32
gchar * export_pkcs12 (guint64 id, gint type, gchar *filename);
 
33
 
 
34
#endif