5 * Packing and unpacking key data
7 * (c) 1999 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 ------------------------------------------------------*/
32 #include <mLib/dstr.h>
36 /*----- Generic packing and unpacking -------------------------------------*/
38 /* --- @key_pack@ --- *
40 * Arguments: @key_packdef *kp@ = pointer to packing structure
41 * @key_data **kd@ = where to put the key data pointer
42 * @dstr *d@ = pointer to tag string for the key data
44 * Returns: Error code, or zero.
46 * Use: Packs a key from a data structure.
49 int key_pack(key_packdef *kp, key_data **kd, dstr *d)
51 switch (kp->e & KF_ENCMASK) {
53 /* --- Binary and integer keys are easy --- */
57 *kd = key_newbinary(kp->e, b->k, b->sz);
61 *kd = key_newmp(kp->e, *(mp **)kp->p);
64 *kd = key_newstring(kp->e, *(char **)kp->p);
67 *kd = key_newec(kp->e, (ec *)kp->p);
70 /* --- Encrypted keys are a little tricky --- *
72 * This works rather differently to unpacking.
77 int err = key_pack(kp->p, &kkd, d);
79 err = key_plock(kd, kkd, d->buf);
85 /* --- Structured keys, as ever, are a nuisance --- */
92 *kd = key_newstruct();
94 for (p = kp->p; p->name; p++) {
98 if ((err = key_pack(&p->kp, &kkd, d)) != 0) {
102 key_structsteal(*kd, p->name, kkd);
113 /* --- @key_unpack@ --- *
115 * Arguments: @key_packdef *kp@ = pointer to packing structure
116 * @key_data *kd@ = pointer to source key data
117 * @dstr *d@ = pointer to tag string for the key data
119 * Returns: Error code, or zero.
121 * Use: Unpacks a key into an appropriate data structure.
124 int key_unpack(key_packdef *kp, key_data *kd, dstr *d)
126 unsigned e = kp->e & KF_ENCMASK;
129 /* --- Decrypt the encrypted key --- */
131 if ((kd->e & KF_ENCMASK) == KENC_ENCRYPT) {
132 if ((err = key_punlock(&kp->kd, kd, d->buf)) != 0)
137 /* --- Ensure that the key has the right type --- */
139 if ((kd->e & KF_ENCMASK) != e) {
140 err = KERR_WRONGTYPE;
144 /* --- Unpack the key --- *
146 * Only three possibilities left now.
151 /* --- Binary and integer keys are easy --- */
154 *(key_bin *)kp->p = kd->u.k;
157 *(mp **)kp->p = kd->u.m;
160 *(char **)kp->p = kd->u.p;
163 *(ec *)kp->p = kd->u.e;
166 /* --- Structured keys take a little care --- */
169 key_packstruct *p, *q;
172 /* --- Iterate over the requested subparts --- */
175 for (p = kp->p; p->name; p++) {
178 /* --- Build the name --- */
183 /* --- Find and unpack the subkey --- */
185 if ((kkd = key_structfind(kd, p->name)) == 0) {
186 if (!(p->kp.e & KF_OPT)) {
190 } else if ((err = key_unpack(&p->kp, kkd, d)) != 0) {
202 /* --- Tidy up if something went wrong --- */
205 for (q = kp->p; q < p; q++)
206 key_unpackdone(&q->kp);
216 /* --- Something went wrong --- */
226 /* --- @key_unpackdone@ --- *
228 * Arguments: @key_packdef *kp@ = pointer to packing definition
232 * Use: Frees the key components contained within a packing
233 * definition, created during key unpacking.
236 void key_unpackdone(key_packdef *kp)
242 if ((kp->e & KF_ENCMASK) == KENC_STRUCT) {
244 for (p = kp->p; p->name; p++)
245 key_unpackdone(&p->kp);
249 /*----- That's all, folks -------------------------------------------------*/