-handle error
[oweals/gnunet.git] / src / util / gnunet-rsa.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/gnunet-rsa.c
23  * @brief tool to manipulate RSA key files
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28
29
30 /**
31  * Flag for printing public key.
32  */
33 static int print_public_key;
34
35 /**
36  * Flag for printing hash of public key.
37  */
38 static int print_peer_identity;
39
40 /**
41  * Flag for printing short hash of public key.
42  */
43 static int print_short_identity;
44
45
46 /**
47  * Main function that will be run by the scheduler.
48  *
49  * @param cls closure
50  * @param args remaining command-line arguments
51  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
52  * @param cfg configuration
53  */
54 static void
55 run (void *cls, char *const *args, const char *cfgfile,
56      const struct GNUNET_CONFIGURATION_Handle *cfg)
57 {
58   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
59   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
60   struct GNUNET_PeerIdentity pid;
61
62   if (NULL == args[0])
63   {
64     fprintf (stderr, _("No hostkey file specified on command line\n"));
65     return;
66   }
67   pk = GNUNET_CRYPTO_rsa_key_create_from_file (args[0]);
68   if (NULL == pk)
69     return;
70   if (print_public_key)
71   {
72     char *s;
73
74     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
75     s = GNUNET_CRYPTO_rsa_public_key_to_string (&pub);
76     fprintf (stdout, "%s\n", s);
77     GNUNET_free (s);
78   }
79   if (print_peer_identity)
80   {
81     struct GNUNET_CRYPTO_HashAsciiEncoded enc;
82
83     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
84     GNUNET_CRYPTO_hash (&pub, sizeof (pub), &pid.hashPubKey);
85     GNUNET_CRYPTO_hash_to_enc (&pid.hashPubKey, &enc);
86     fprintf (stdout, "%s\n", enc.encoding);
87   }
88   if (print_short_identity)
89   {
90     struct GNUNET_CRYPTO_ShortHashAsciiEncoded enc;
91     struct GNUNET_CRYPTO_ShortHashCode sh;
92
93     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
94     GNUNET_CRYPTO_short_hash (&pub, sizeof (pub), &sh);
95     GNUNET_CRYPTO_short_hash_to_enc (&sh, &enc);
96     fprintf (stdout, "%s\n", enc.short_encoding);
97   }
98   GNUNET_CRYPTO_rsa_key_free (pk);
99 }
100
101
102 /**
103  * The main function to obtain statistics in GNUnet.
104  *
105  * @param argc number of arguments from the command line
106  * @param argv command line arguments
107  * @return 0 ok, 1 on error
108  */
109 int
110 main (int argc, char *const *argv)
111 {
112   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
113     { 'p', "print-public-key", NULL,
114       gettext_noop ("print the public key in ASCII format"),
115       0, &GNUNET_GETOPT_set_one, &print_public_key },
116     { 'P', "print-peer-identity", NULL,
117       gettext_noop ("print the hash of the public key in ASCII format"),
118       0, &GNUNET_GETOPT_set_one, &print_peer_identity },
119     { 's', "print-short-identity", NULL,
120       gettext_noop ("print the short hash of the public key in ASCII format"),
121       0, &GNUNET_GETOPT_set_one, &print_short_identity },
122     GNUNET_GETOPT_OPTION_END
123   };
124
125   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
126     return 2;
127
128   return (GNUNET_OK ==
129           GNUNET_PROGRAM_run (argc, argv, "gnunet-rsa [OPTIONS] keyfile",
130                               gettext_noop ("Manipulate GNUnet private RSA key files"),
131                               options, &run, NULL)) ? 0 : 1;
132 }
133
134 /* end of gnunet-rsa.c */