generate keys to use 2048 bit rsa
[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  * Use weak random number generator for key generation.
48  */
49 static int weak_random;
50
51 /**
52  * Option set to create a bunch of keys at once.
53  */
54 static unsigned int make_keys;
55
56 /**
57  * The private information of an RSA key pair.
58  * NOTE: this must match the definition in crypto_ksk.c and crypto_rsa.c!
59  */
60 struct GNUNET_CRYPTO_RsaPrivateKey
61 {
62   gcry_sexp_t sexp;
63 };
64
65
66 /**
67  * Create a new private key. Caller must free return value.
68  *
69  * @return fresh private key
70  */
71 static struct GNUNET_CRYPTO_RsaPrivateKey *
72 rsa_key_create ()
73 {
74   struct GNUNET_CRYPTO_RsaPrivateKey *ret;
75   gcry_sexp_t s_key;
76   gcry_sexp_t s_keyparam;
77
78   GNUNET_assert (0 ==
79                  gcry_sexp_build (&s_keyparam, NULL,
80                                   "(genkey(rsa(nbits %d)(rsa-use-e 3:257)))",
81                                   2048));
82   GNUNET_assert (0 == gcry_pk_genkey (&s_key, s_keyparam));
83   gcry_sexp_release (s_keyparam);
84 #if EXTRA_CHECKS
85   GNUNET_assert (0 == gcry_pk_testkey (s_key));
86 #endif
87   ret = GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_RsaPrivateKey));
88   ret->sexp = s_key;
89   return ret;
90 }
91
92
93 /**
94  * Create a flat file with a large number of key pairs for testing.
95  */
96 static void
97 create_keys (const char *fn)
98 {
99   FILE *f;
100   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
101   struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded *enc;
102
103   if (NULL == (f = fopen (fn, "w+")))
104     {
105       fprintf (stderr,
106                _("Failed to open `%s': %s\n"),
107                fn,
108                STRERROR (errno));
109       return;
110     }
111   fprintf (stderr,
112            _("Generating %u keys, please wait"),
113            make_keys);
114   while (0 < make_keys--)
115   {    
116     fprintf (stderr,
117              ".");
118     if (NULL == (pk = rsa_key_create ()))
119     {
120        GNUNET_break (0);
121        break;
122     }
123     enc = GNUNET_CRYPTO_rsa_encode_key (pk);
124     if (htons (enc->len) != fwrite (enc, 1, htons (enc->len), f))
125       {
126         fprintf (stderr,
127                  _("\nFailed to write to `%s': %s\n"),
128                  fn,
129                  STRERROR (errno));
130         GNUNET_CRYPTO_rsa_key_free (pk);
131         GNUNET_free (enc);
132         break;
133       }
134     GNUNET_CRYPTO_rsa_key_free (pk);
135     GNUNET_free (enc);
136   }
137   if (0 == make_keys)
138     fprintf (stderr,
139              _("Finished!\n"));
140   fclose (f);
141 }
142
143
144 /**
145  * Main function that will be run by the scheduler.
146  *
147  * @param cls closure
148  * @param args remaining command-line arguments
149  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
150  * @param cfg configuration
151  */
152 static void
153 run (void *cls, char *const *args, const char *cfgfile,
154      const struct GNUNET_CONFIGURATION_Handle *cfg)
155 {
156   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
157   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
158   struct GNUNET_PeerIdentity pid;
159
160   if (NULL == args[0])
161   {
162     fprintf (stderr, _("No hostkey file specified on command line\n"));
163     return;
164   }
165   if (0 != weak_random)    
166     GNUNET_CRYPTO_random_disable_entropy_gathering ();  
167   if (make_keys > 0)
168   {
169     create_keys (args[0]);
170     return;
171   }
172   pk = GNUNET_CRYPTO_rsa_key_create_from_file (args[0]);
173   if (NULL == pk)
174     return;
175   if (print_public_key)
176   {
177     char *s;
178
179     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
180     s = GNUNET_CRYPTO_rsa_public_key_to_string (&pub);
181     fprintf (stdout, "%s\n", s);
182     GNUNET_free (s);
183   }
184   if (print_peer_identity)
185   {
186     struct GNUNET_CRYPTO_HashAsciiEncoded enc;
187
188     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
189     GNUNET_CRYPTO_hash (&pub, sizeof (pub), &pid.hashPubKey);
190     GNUNET_CRYPTO_hash_to_enc (&pid.hashPubKey, &enc);
191     fprintf (stdout, "%s\n", enc.encoding);
192   }
193   if (print_short_identity)
194   {
195     struct GNUNET_CRYPTO_ShortHashAsciiEncoded enc;
196     struct GNUNET_CRYPTO_ShortHashCode sh;
197
198     GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
199     GNUNET_CRYPTO_short_hash (&pub, sizeof (pub), &sh);
200     GNUNET_CRYPTO_short_hash_to_enc (&sh, &enc);
201     fprintf (stdout, "%s\n", enc.short_encoding);
202   }
203   GNUNET_CRYPTO_rsa_key_free (pk);
204 }
205
206
207 /**
208  * Program to manipulate RSA key files.
209  *
210  * @param argc number of arguments from the command line
211  * @param argv command line arguments
212  * @return 0 ok, 1 on error
213  */
214 int
215 main (int argc, char *const *argv)
216 {
217   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
218     { 'g', "generate-keys", "COUNT",
219       gettext_noop ("create COUNT public-private key pairs (for testing)"),
220       1, &GNUNET_GETOPT_set_uint, &make_keys },
221     { 'p', "print-public-key", NULL,
222       gettext_noop ("print the public key in ASCII format"),
223       0, &GNUNET_GETOPT_set_one, &print_public_key },
224     { 'P', "print-peer-identity", NULL,
225       gettext_noop ("print the hash of the public key in ASCII format"),
226       0, &GNUNET_GETOPT_set_one, &print_peer_identity },
227     { 's', "print-short-identity", NULL,
228       gettext_noop ("print the short hash of the public key in ASCII format"),
229       0, &GNUNET_GETOPT_set_one, &print_short_identity },
230     { 'w', "weak-random", NULL,
231       gettext_noop ("use insecure, weak random number generator for key generation (for testing only)"),
232       0, &GNUNET_GETOPT_set_one, &weak_random },
233     GNUNET_GETOPT_OPTION_END
234   };
235
236   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
237     return 2;
238
239   return (GNUNET_OK ==
240           GNUNET_PROGRAM_run (argc, argv, "gnunet-rsa [OPTIONS] keyfile",
241                               gettext_noop ("Manipulate GNUnet private RSA key files"),
242                               options, &run, NULL)) ? 0 : 1;
243 }
244
245 /* end of gnunet-rsa.c */