3 * $Id: rsa-fetch.c,v 1.3 2004/04/08 01:36:15 mdw Exp $
5 * Key fetching for RSA public and private keys
7 * (c) 2000 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of Catacomb.
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.
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.
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,
30 /*----- Header files ------------------------------------------------------*/
35 /*----- Key fetching ------------------------------------------------------*/
37 const key_fetchdef rsa_pubfetch[] = {
38 { "n", offsetof(rsa_pub, n), KENC_MP, 0 },
39 { "e", offsetof(rsa_pub, e), KENC_MP, 0 },
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 },
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 },
60 /* --- @rsa_pubfree@, @rsa_privfree@ --- *
62 * Arguments: @rsa_pub *rp@, @rsa_priv *rp@ = pointer to key block
66 * Use: Frees an RSA key block.
69 void rsa_pubfree(rsa_pub *rp)
75 void rsa_privfree(rsa_priv *rp)
87 /*----- That's all, folks -------------------------------------------------*/