chiark / gitweb /
Initial checkin.
[catacomb-perl] / key.xs
1 # ---?---
2 #
3 # $Id: key.xs,v 1.1 2004/04/02 18:04:01 mdw Exp $
4 #
5 # Key-management interface
6 #
7 # (c) 2001 Straylight/Edgeware
8 #
9
10 #----- Licensing notice -----------------------------------------------------
11 #
12 # This file is part of the Perl interface to Catacomb.
13 #
14 # Catacomb/Perl is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
18
19 # Catacomb/Perl is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 # GNU General Public License for more details.
23
24 # You should have received a copy of the GNU General Public License
25 # along with Catacomb/Perl; if not, write to the Free Software Foundation,
26 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28 #----- Revision history -----------------------------------------------------
29 #
30 # $Log: key.xs,v $
31 # Revision 1.1  2004/04/02 18:04:01  mdw
32 # Initial checkin.
33 #
34
35 MODULE = Catacomb PACKAGE = Catacomb::Key
36
37 MODULE = Catacomb PACKAGE = Catacomb::Key::Data
38
39 MODULE = Catacomb PACKAGE = Catacomb::Key::File PREFIX = key_
40
41 Key_File *
42 new(file, how)
43         char *file
44         unsigned how
45         CODE:
46         RETVAL = CREATE(key_file);
47         if (key_open(RETVAL, file, how, warn_keyreporter, 0)) {
48           DESTROY(RETVAL);
49           RETVAL = 0;
50         }
51         OUTPUT:
52         RETVAL
53
54 SV *
55 DESTROY(kf)
56         Key_File *kf
57         CODE:
58         key_close(kf);
59         XSRETURN_UNDEF;
60
61 KEYERR
62 merge(kf, name, fp)
63         Key_File *kf
64         char *name
65         FILE *fp
66         CODE:
67         RETVAL = key_merge(kf, name, fp, warn_keyreporter, 0);
68         OUTPUT:
69         RETVAL
70
71 SV *
72 extract
73
74 #----- That's all, folks ----------------------------------------------------