chiark / gitweb /
configure.ac: Replace with a new version.
[catacomb] / rsa-fetch.c
1 /* -*-c-*-
2  *
3  * $Id: rsa-fetch.c,v 1.3 2004/04/08 01:36:15 mdw Exp $
4  *
5  * Key fetching for RSA public and private keys
6  *
7  * (c) 2000 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------*
11  *
12  * This file is part of Catacomb.
13  *
14  * Catacomb is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU Library General Public License as
16  * published by the Free Software Foundation; either version 2 of the
17  * License, or (at your option) any later version.
18  *
19  * Catacomb 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 Library General Public License for more details.
23  *
24  * You should have received a copy of the GNU Library General Public
25  * License along with Catacomb; if not, write to the Free
26  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27  * MA 02111-1307, USA.
28  */
29
30 /*----- Header files ------------------------------------------------------*/
31
32 #include "key.h"
33 #include "rsa.h"
34
35 /*----- Key fetching ------------------------------------------------------*/
36
37 const key_fetchdef rsa_pubfetch[] = {
38   { "n",        offsetof(rsa_pub, n),           KENC_MP,        0 },
39   { "e",        offsetof(rsa_pub, e),           KENC_MP,        0 },
40   { 0,          0,                              0,              0 }
41 };
42
43 static const key_fetchdef priv[] = {
44   { "p",        offsetof(rsa_priv, p),          KENC_MP,        0 },
45   { "q",        offsetof(rsa_priv, q),          KENC_MP,        0 },
46   { "q-inv",    offsetof(rsa_priv, q_inv),      KENC_MP,        0 },
47   { "d",        offsetof(rsa_priv, d),          KENC_MP,        0 },
48   { "d-mod-p",  offsetof(rsa_priv, dp),         KENC_MP,        0 },
49   { "d-mod-q",  offsetof(rsa_priv, dq),         KENC_MP,        0 },
50   { 0,          0,                              0,              0 }
51 };
52
53 const key_fetchdef rsa_privfetch[] = {
54   { "n",        offsetof(rsa_priv, n),          KENC_MP,        0 },
55   { "e",        offsetof(rsa_priv, e),          KENC_MP,        0 },
56   { "private",  0,                              KENC_STRUCT,    priv },
57   { 0,          0,                              0,              0 }
58 };
59
60 /* --- @rsa_pubfree@, @rsa_privfree@ --- *
61  *
62  * Arguments:   @rsa_pub *rp@, @rsa_priv *rp@ = pointer to key block
63  *
64  * Returns:     ---
65  *
66  * Use:         Frees an RSA key block.
67  */
68
69 void rsa_pubfree(rsa_pub *rp)
70 {
71   mp_drop(rp->n);
72   mp_drop(rp->e);
73 }
74
75 void rsa_privfree(rsa_priv *rp)
76 {
77   mp_drop(rp->n);
78   mp_drop(rp->e);
79   mp_drop(rp->p);
80   mp_drop(rp->q);
81   mp_drop(rp->q_inv);
82   mp_drop(rp->d);
83   mp_drop(rp->dp);
84   mp_drop(rp->dq);
85 }
86
87 /*----- That's all, folks -------------------------------------------------*/