2 * splitkeys.c - Split a keyring into smaller chunks.
4 * Copyright 2003 Jonathan McDowell <noodles@earth.li>
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #include <sys/types.h>
26 #include "charfuncs.h"
27 #include "keystructs.h"
32 int main(int argc, char *argv[])
34 struct openpgp_packet_list *packets = NULL;
35 struct openpgp_packet_list *list_end = NULL;
36 struct openpgp_packet_list *tmp = NULL;
43 maxkeys = atoi(argv[1]);
46 "Couldn't parse %s as a number of keys!\n",
53 read_openpgp_stream(stdin_getchar, NULL,
55 if (packets != NULL) {
57 while (list_end->next != NULL) {
59 list_end = list_end->next;
60 if (list_end->next == NULL &&
61 list_end->packet->tag ==
62 OPENPGP_PACKET_PUBLICKEY) {
66 if (tmp->next != NULL) {
70 snprintf(splitfile, 1023, "splitfile-%d.pgp", count);
71 outfd = open(splitfile, O_WRONLY | O_CREAT, 0664);
72 write_openpgp_stream(file_putchar, &outfd,
75 free_packet_list(packets);
79 } while (packets != NULL);