fix
[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 #include <gcrypt.h>
29
30
31 /**
32  * Flag for printing public key.
33  */
34 static int print_public_key;
35
36 /**
37  * Flag for printing hash of public key.
38  */
39 static int print_peer_identity;
40
41 /**
42  * Flag for printing short hash of public key.
43  */
44 static int print_short_identity;
45
46
47 /**
48  * The private information of an RSA key pair.
49  * NOTE: this must match the definition in crypto_ksk.c and crypto_rsa.c!
50  */
51 struct GNUNET_CRYPTO_RsaPrivateKey
52 {
53   gcry_sexp_t sexp;
54 };
55
56
57 #if 0
58 /**
59  * Create a new private key. Caller must free return value.
60  *
61  * @return fresh private key
62  */
63 struct GNUNET_CRYPTO_RsaPrivateKey *
64 GNUNET_CRYPTO_rsa_key_create ()
65 {
66   struct GNUNET_CRYPTO_RsaPrivateKey *ret;
67   gcry_sexp_t s_key;
68   gcry_sexp_t s_keyparam;
69
70   GNUNET_assert (0 ==
71                  gcry_sexp_build (&s_keyparam, NULL,
72                                   "(genkey(rsa(nbits %d)(rsa-use-e 3:257)))",
73                                   HOSTKEY_LEN));
74   GNUNET_assert (0 == gcry_pk_genkey (&s_key, s_keyparam));
75   gcry_sexp_release (s_keyparam);
76 #if EXTRA_CHECKS
77   GNUNET_assert (0 == gcry_pk_testkey (s_key));
78 #endif
79   ret = GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_RsaPrivateKey));
80   ret->sexp = s_key;
81   return ret;
82 }
83 #endif
84
85
86 /**
87  * Main function that will be run by the scheduler.
88  *
89  * @param cls closure
90  * @param args remaining command-line arguments
91  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
92  * @param cfg configuration
93  */
94 static void
95 run (void *cls, char *const *args, const char *cfgfile,
96      const struct GNUNET_CONFIGURATION_Handle *cfg)
97 {
98   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
99   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
100   struct GNUNET_PeerIdentity pid;
101
102   if (NULL == args[0])
103   {
104     fprintf (stderr, _("No hostkey file specified on command line\n"));
105     return;
106   }
107   pk = GNUNET_CRYPTO_rsa_key_create_from_file (args[0]);
108   if (NULL == pk)
109     return;
110   if (print_public_key)
111   {
112     char *s;
113
114     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
115     s = GNUNET_CRYPTO_rsa_public_key_to_string (&pub);
116     fprintf (stdout, "%s\n", s);
117     GNUNET_free (s);
118   }
119   if (print_peer_identity)
120   {
121     struct GNUNET_CRYPTO_HashAsciiEncoded enc;
122
123     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
124     GNUNET_CRYPTO_hash (&pub, sizeof (pub), &pid.hashPubKey);
125     GNUNET_CRYPTO_hash_to_enc (&pid.hashPubKey, &enc);
126     fprintf (stdout, "%s\n", enc.encoding);
127   }
128   if (print_short_identity)
129   {
130     struct GNUNET_CRYPTO_ShortHashAsciiEncoded enc;
131     struct GNUNET_CRYPTO_ShortHashCode sh;
132
133     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
134     GNUNET_CRYPTO_short_hash (&pub, sizeof (pub), &sh);
135     GNUNET_CRYPTO_short_hash_to_enc (&sh, &enc);
136     fprintf (stdout, "%s\n", enc.short_encoding);
137   }
138   GNUNET_CRYPTO_rsa_key_free (pk);
139 }
140
141
142 /**
143  * Program to manipulate RSA key files.
144  *
145  * @param argc number of arguments from the command line
146  * @param argv command line arguments
147  * @return 0 ok, 1 on error
148  */
149 int
150 main (int argc, char *const *argv)
151 {
152   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
153     { 'p', "print-public-key", NULL,
154       gettext_noop ("print the public key in ASCII format"),
155       0, &GNUNET_GETOPT_set_one, &print_public_key },
156     { 'P', "print-peer-identity", NULL,
157       gettext_noop ("print the hash of the public key in ASCII format"),
158       0, &GNUNET_GETOPT_set_one, &print_peer_identity },
159     { 's', "print-short-identity", NULL,
160       gettext_noop ("print the short hash of the public key in ASCII format"),
161       0, &GNUNET_GETOPT_set_one, &print_short_identity },
162     GNUNET_GETOPT_OPTION_END
163   };
164
165   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
166     return 2;
167
168   return (GNUNET_OK ==
169           GNUNET_PROGRAM_run (argc, argv, "gnunet-rsa [OPTIONS] keyfile",
170                               gettext_noop ("Manipulate GNUnet private RSA key files"),
171                               options, &run, NULL)) ? 0 : 1;
172 }
173
174 /* end of gnunet-rsa.c */