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"
30 #include "onak-conf.h"
34 int main(int argc, char *argv[])
36 struct openpgp_packet_list *packets = NULL;
37 struct openpgp_packet_list *list_end = NULL;
38 struct openpgp_packet_list *tmp = NULL;
46 maxkeys = atoi(argv[1]);
49 "Couldn't parse %s as a number of keys!\n",
56 initlogthing("splitkeys", config.logfile);
59 result = read_openpgp_stream(stdin_getchar, NULL,
61 if (packets != NULL) {
63 while (list_end->next != NULL) {
65 list_end = list_end->next;
66 if (list_end->next == NULL &&
67 list_end->packet->tag ==
68 OPENPGP_PACKET_PUBLICKEY) {
72 if (tmp->next != NULL) {
76 snprintf(splitfile, 1023, "splitfile-%d.pgp", count);
77 outfd = open(splitfile, O_WRONLY | O_CREAT, 0664);
78 write_openpgp_stream(file_putchar, &outfd,
81 free_packet_list(packets);
85 } while (packets != NULL);