dox
[oweals/gnunet.git] / src / include / gnunet_crypto_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 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 2, 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 include/gnunet_crypto_lib.h
23  * @brief cryptographic primitives for GNUnet
24  *
25  * @author Christian Grothoff
26  * @author Krista Bennett
27  * @author Gerd Knorr <kraxel@bytesex.org>
28  * @author Ioana Patrascu
29  * @author Tzvetan Horozov
30  */
31
32 #ifndef GNUNET_CRYPTO_LIB_H
33 #define GNUNET_CRYPTO_LIB_H
34
35 #ifdef __cplusplus
36 extern "C"
37 {
38 #if 0                           /* keep Emacsens' auto-indent happy */
39 }
40 #endif
41 #endif
42
43 #include "gnunet_common.h"
44 #include "gnunet_scheduler_lib.h"
45
46 /**
47  * Desired quality level for cryptographic operations.
48  */
49 enum GNUNET_CRYPTO_Quality
50 {
51   /**
52    * No good quality of the operation is needed (i.e.,
53    * random numbers can be pseudo-random).
54    */
55   GNUNET_CRYPTO_QUALITY_WEAK,
56
57   /**
58    * High-quality operations are desired.
59    */
60   GNUNET_CRYPTO_QUALITY_STRONG
61 };
62
63
64 /**
65  * @brief length of the sessionkey in bytes (256 BIT sessionkey)
66  */
67 #define GNUNET_CRYPTO_AES_KEY_LENGTH (256/8)
68
69
70 /**
71  * @brief Length of RSA encrypted data (2048 bit)
72  *
73  * We currently do not handle encryption of data
74  * that can not be done in a single call to the
75  * RSA methods (read: large chunks of data).
76  * We should never need that, as we can use
77  * the GNUNET_CRYPTO_hash for larger pieces of data for signing,
78  * and for encryption, we only need to encode sessionkeys!
79  */
80 #define GNUNET_CRYPTO_RSA_DATA_ENCODING_LENGTH 256
81
82
83 /**
84  * Length of an RSA KEY (d,e,len), 2048 bit (=256 octests) key d, 2 byte e
85  */
86 #define GNUNET_CRYPTO_RSA_KEY_LENGTH 258
87
88
89 /**
90  * The private information of an RSA key pair.
91  */
92 struct GNUNET_CRYPTO_RsaPrivateKey;
93
94
95 /**
96  * @brief 0-terminated ASCII encoding of a GNUNET_HashCode.
97  */
98 struct GNUNET_CRYPTO_HashAsciiEncoded
99 {
100   unsigned char encoding[104];
101 };
102
103
104
105 /**
106  * @brief an RSA signature
107  */
108 struct GNUNET_CRYPTO_RsaSignature
109 {
110   unsigned char sig[GNUNET_CRYPTO_RSA_DATA_ENCODING_LENGTH];
111 };
112
113
114 /**
115  * @brief header of what an RSA signature signs
116  *        this must be followed by "size - 8" bytes of
117  *        the actual signed data
118  */
119 struct GNUNET_CRYPTO_RsaSignaturePurpose
120 {
121   /**
122    * How many bytes does this signature sign?
123    * (including this purpose header); in network
124    * byte order (!).
125    */
126   uint32_t size GNUNET_PACKED;
127
128   /**
129    * What does this signature vouch for?  This
130    * must contain a GNUNET_SIGNATURE_PURPOSE_XXX
131    * constant (from gnunet_signatures.h).  In
132    * network byte order!
133    */
134   uint32_t purpose GNUNET_PACKED;
135
136 };
137
138
139 /**
140  * @brief A public key.
141  */
142 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
143 {
144   /**
145    * In big-endian, must be GNUNET_CRYPTO_RSA_KEY_LENGTH+4
146    */
147   uint16_t len GNUNET_PACKED;
148
149   /**
150    * Size of n in key; in big-endian!
151    */
152   uint16_t sizen GNUNET_PACKED;
153
154   /**
155    * The key itself, contains n followed by e.
156    */
157   unsigned char key[GNUNET_CRYPTO_RSA_KEY_LENGTH];
158
159   /**
160    * Padding (must be 0)
161    */
162   uint16_t padding GNUNET_PACKED;
163 };
164
165
166 /**
167  * RSA Encrypted data.
168  */
169 struct GNUNET_CRYPTO_RsaEncryptedData
170 {
171   unsigned char encoding[GNUNET_CRYPTO_RSA_DATA_ENCODING_LENGTH];
172 };
173
174
175 /**
176  * @brief type for session keys
177  */
178 struct GNUNET_CRYPTO_AesSessionKey
179 {
180   /**
181    * Actual key.
182    */
183   unsigned char key[GNUNET_CRYPTO_AES_KEY_LENGTH];
184
185   /**
186    * checksum!
187    */
188   uint32_t crc32 GNUNET_PACKED;
189 };
190
191
192 /**
193  * @brief IV for sym cipher
194  *
195  * NOTE: must be smaller (!) in size than the
196  * GNUNET_HashCode.
197  */
198 struct GNUNET_CRYPTO_AesInitializationVector
199 {
200   unsigned char iv[GNUNET_CRYPTO_AES_KEY_LENGTH / 2];
201 };
202
203
204 /* **************** Functions and Macros ************* */
205
206
207 /**
208  * Compute the CRC32 checksum for the first len
209  * bytes of the buffer.
210  *
211  * @param buf the data over which we're taking the CRC
212  * @param len the length of the buffer in bytes
213  * @return the resulting CRC32 checksum
214  */
215 int32_t GNUNET_CRYPTO_crc32_n (const void *buf, 
216                                size_t len);
217
218
219 /**
220  * Produce a random value.
221  *
222  * @param mode desired quality of the random number
223  * @param i the upper limit (exclusive) for the random number
224  * @return a random value in the interval [0,i) (exclusive).
225  */
226 uint32_t GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode,
227                                    uint32_t i);
228
229
230 /**
231  * Random on unsigned 64-bit values. 
232  *
233  * @param mode desired quality of the random number
234  * @param max value returned will be in range [0,max) (exclusive)
235  * @return random 64-bit number
236  */
237 uint64_t GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode,
238                                    uint64_t max);
239
240
241 /**
242  * Get an array with a random permutation of the
243  * numbers 0...n-1.
244  * @param mode GNUNET_CRYPTO_QUALITY_STRONG if the strong (but expensive) PRNG should be used, GNUNET_CRYPTO_QUALITY_WEAK otherwise
245  * @param n the size of the array
246  * @return the permutation array (allocated from heap)
247  */
248 unsigned int *GNUNET_CRYPTO_random_permute (enum GNUNET_CRYPTO_Quality mode,
249                                             unsigned int n);
250
251
252 /**
253  * Create a new Session key.
254  *
255  * @param key key to initialize
256  */
257 void GNUNET_CRYPTO_aes_create_session_key (struct GNUNET_CRYPTO_AesSessionKey
258                                            *key);
259
260
261 /**
262  * Check that a new session key is well-formed.
263  *
264  * @param key key to check
265  * @return GNUNET_OK if the key is valid
266  */
267 int GNUNET_CRYPTO_aes_check_session_key (const struct
268                                          GNUNET_CRYPTO_AesSessionKey *key);
269
270
271 /**
272  * Encrypt a block with the public key of another
273  * host that uses the same cyper.
274  *
275  * @param block the block to encrypt
276  * @param len the size of the block
277  * @param sessionkey the key used to encrypt
278  * @param iv the initialization vector to use, use INITVALUE
279  *        for streams.
280  * @return the size of the encrypted block, -1 for errors
281  */
282 ssize_t GNUNET_CRYPTO_aes_encrypt (const void *block,
283                                    size_t len,
284                                    const struct GNUNET_CRYPTO_AesSessionKey
285                                    *sessionkey,
286                                    const struct
287                                    GNUNET_CRYPTO_AesInitializationVector *iv,
288                                    void *result);
289
290
291 /**
292  * Decrypt a given block with the sessionkey.
293  *
294  * @param block the data to decrypt, encoded as returned by encrypt
295  * @param size how big is the block?
296  * @param sessionkey the key used to decrypt
297  * @param iv the initialization vector to use
298  * @param result address to store the result at
299  * @return -1 on failure, size of decrypted block on success
300  */
301 ssize_t GNUNET_CRYPTO_aes_decrypt (const void *block, 
302                                    size_t size,
303                                    const struct GNUNET_CRYPTO_AesSessionKey *sessionkey, 
304                                    const struct GNUNET_CRYPTO_AesInitializationVector *iv,
305                                    void *result);
306
307
308 /**
309  * Convert hash to ASCII encoding.
310  * @param block the hash code
311  * @param result where to store the encoding (struct GNUNET_CRYPTO_HashAsciiEncoded can be
312  *  safely cast to char*, a '\\0' termination is set).
313  */
314 void GNUNET_CRYPTO_hash_to_enc (const GNUNET_HashCode * block,
315                                 struct GNUNET_CRYPTO_HashAsciiEncoded
316                                 *result);
317
318
319 /**
320  * Convert ASCII encoding back to GNUNET_CRYPTO_hash
321  * @param enc the encoding
322  * @param result where to store the GNUNET_CRYPTO_hash code
323  * @return GNUNET_OK on success, GNUNET_SYSERR if result has the wrong encoding
324  */
325 int GNUNET_CRYPTO_hash_from_string (const char *enc,
326                                     GNUNET_HashCode * result);
327
328
329 /**
330  * Compute the distance between 2 hashcodes.
331  * The computation must be fast, not involve
332  * a.a or a.e (they're used elsewhere), and
333  * be somewhat consistent. And of course, the
334  * result should be a positive number.
335  *
336  * @param a some hash code
337  * @param b some hash code
338  * @return number between 0 and 65536
339  */
340 uint32_t GNUNET_CRYPTO_hash_distance_u32 (const GNUNET_HashCode * a,
341                                           const GNUNET_HashCode * b);
342
343
344 /**
345  * Compute hash of a given block.
346  *
347  * @param block the data to hash
348  * @param size size of the block
349  * @param ret pointer to where to write the hashcode
350  */
351 void GNUNET_CRYPTO_hash (const void *block, 
352                          size_t size,
353                          GNUNET_HashCode * ret);
354
355
356 /**
357  * Function called once the hash computation over the
358  * specified file has completed.
359  *
360  * @param cls closure
361  * @param res resulting hash, NULL on error
362  */
363 typedef void (*GNUNET_CRYPTO_HashCompletedCallback) (void *cls,
364                                                      const GNUNET_HashCode *
365                                                      res);
366
367
368 /**
369  * Compute the hash of an entire file.
370  *
371  * @param sched scheduler to use
372  * @param priority scheduling priority to use
373  * @param filename name of file to hash
374  * @param blocksize number of bytes to process in one task
375  * @param callback function to call upon completion
376  * @param callback_cls closure for callback
377  */
378 void GNUNET_CRYPTO_hash_file (struct GNUNET_SCHEDULER_Handle *sched,
379                               enum GNUNET_SCHEDULER_Priority priority,
380                               const char *filename,
381                               size_t blocksize,
382                               GNUNET_CRYPTO_HashCompletedCallback callback,
383                               void *callback_cls);
384
385
386 /**
387  * Create a random hash code.
388  *
389  * @param mode desired quality level
390  * @param result hash code that is randomized
391  */
392 void GNUNET_CRYPTO_hash_create_random (enum GNUNET_CRYPTO_Quality mode,
393                                        GNUNET_HashCode * result);
394
395
396 /**
397  * compute result(delta) = b - a
398  *
399  * @param a some hash code
400  * @param b some hash code
401  * @param result set to b - a 
402  */
403 void GNUNET_CRYPTO_hash_difference (const GNUNET_HashCode * a,
404                                     const GNUNET_HashCode * b,
405                                     GNUNET_HashCode * result);
406
407
408 /**
409  * compute result(b) = a + delta
410  *
411  * @param a some hash code
412  * @param delta some hash code
413  * @param result set to a + delta
414  */
415 void GNUNET_CRYPTO_hash_sum (const GNUNET_HashCode * a,
416                              const GNUNET_HashCode * delta,
417                              GNUNET_HashCode * result);
418
419
420 /**
421  * compute result = a ^ b
422  *
423  * @param a some hash code
424  * @param b some hash code
425  * @param result set to a ^ b 
426  */
427 void GNUNET_CRYPTO_hash_xor (const GNUNET_HashCode * a,
428                              const GNUNET_HashCode * b,
429                              GNUNET_HashCode * result);
430
431
432 /**
433  * Convert a hashcode into a key.
434  *
435  * @param hc hash code that serves to generate the key
436  * @param skey set to a valid session key
437  * @param iv set to a valid initialization vector
438  */
439 void GNUNET_CRYPTO_hash_to_aes_key (const GNUNET_HashCode * hc,
440                                     struct GNUNET_CRYPTO_AesSessionKey *skey,
441                                     struct
442                                     GNUNET_CRYPTO_AesInitializationVector
443                                     *iv);
444
445
446 /**
447  * Obtain a bit from a hashcode.
448  *
449  * @param code the GNUNET_CRYPTO_hash to index bit-wise
450  * @param bit index into the hashcode, [0...159]
451  * @return Bit \a bit from hashcode \a code, -1 for invalid index
452  */
453 int GNUNET_CRYPTO_hash_get_bit (const GNUNET_HashCode * code,
454                                 unsigned int bit);
455
456
457 /**
458  * Compare function for HashCodes, producing a total ordering
459  * of all hashcodes.
460  *
461  * @param h1 some hash code
462  * @param h2 some hash code
463  * @return 1 if h1 > h2, -1 if h1 < h2 and 0 if h1 == h2.
464  */
465 int GNUNET_CRYPTO_hash_cmp (const GNUNET_HashCode * h1,
466                             const GNUNET_HashCode * h2);
467
468
469 /**
470  * Find out which of the two GNUNET_CRYPTO_hash codes is closer to target
471  * in the XOR metric (Kademlia).
472  *
473  * @param h1 some hash code
474  * @param h2 some hash code
475  * @param target some hash code
476  * @return -1 if h1 is closer, 1 if h2 is closer and 0 if h1==h2.
477  */
478 int GNUNET_CRYPTO_hash_xorcmp (const GNUNET_HashCode * h1,
479                                const GNUNET_HashCode * h2,
480                                const GNUNET_HashCode * target);
481
482
483 /**
484  * Create a new private key. Caller must free return value.
485  *
486  * @return fresh private key
487  */
488 struct GNUNET_CRYPTO_RsaPrivateKey *GNUNET_CRYPTO_rsa_key_create (void);
489
490
491 /**
492  * Create a new private key by reading it from a file.  If the
493  * files does not exist, create a new key and write it to the
494  * file.  Caller must free return value. Note that this function
495  * can not guarantee that another process might not be trying
496  * the same operation on the same file at the same time.  The
497  * caller must somehow know that the file either already exists
498  * with a valid key OR be sure that no other process is calling
499  * this function at the same time.  If the contents of the file
500  * are invalid the old file is deleted and a fresh key is
501  * created.
502  *
503  * @param filename name of file to use for storage
504  * @return new private key, NULL on error (for example,
505  *   permission denied)
506  */
507 struct GNUNET_CRYPTO_RsaPrivateKey
508   *GNUNET_CRYPTO_rsa_key_create_from_file (const char *filename);
509
510
511 /**
512  * Deterministically (!) create a private key using only the
513  * given HashCode as input to the PRNG.
514  *
515  * @param hc "random" input to PRNG
516  * @return some private key purely dependent on input
517  */
518 struct GNUNET_CRYPTO_RsaPrivateKey
519   *GNUNET_CRYPTO_rsa_key_create_from_hash (const GNUNET_HashCode * hc);
520
521
522 /**
523  * Free memory occupied by the private key.
524  * @param hostkey pointer to the memory to free
525  */
526 void GNUNET_CRYPTO_rsa_key_free (struct GNUNET_CRYPTO_RsaPrivateKey *hostkey);
527
528
529 /**
530  * Extract the public key of the host.
531  *
532  * @param priv the private key
533  * @param pub where to write the public key
534  */
535 void GNUNET_CRYPTO_rsa_key_get_public (const struct
536                                        GNUNET_CRYPTO_RsaPrivateKey *priv,
537                                        struct
538                                        GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
539                                        *pub);
540
541
542 /**
543  * Encrypt a block with the public key of another host that uses the
544  * same cyper.
545  *
546  * @param block the block to encrypt
547  * @param size the size of block
548  * @param publicKey the encoded public key used to encrypt
549  * @param target where to store the encrypted block
550  * @return GNUNET_SYSERR on error, GNUNET_OK if ok
551  */
552 int GNUNET_CRYPTO_rsa_encrypt (const void *block,
553                                size_t size,
554                                const struct
555                                GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
556                                *publicKey,
557                                struct GNUNET_CRYPTO_RsaEncryptedData *target);
558
559
560 /**
561  * Decrypt a given block with the hostkey.
562  *
563  * @param key the key to use
564  * @param block the data to decrypt, encoded as returned by encrypt, not consumed
565  * @param result pointer to a location where the result can be stored
566  * @param max how many bytes of a result are expected? Must be exact.
567  * @return the size of the decrypted block (that is, size) or -1 on error
568  */
569 ssize_t GNUNET_CRYPTO_rsa_decrypt (const struct GNUNET_CRYPTO_RsaPrivateKey *key,
570                                    const struct GNUNET_CRYPTO_RsaEncryptedData
571                                    *block,
572                                    void *result, 
573                                    size_t max);
574
575
576 /**
577  * Sign a given block.
578  *
579  * @param key private key to use for the signing
580  * @param purpose what to sign (size, purpose)
581  * @param sig where to write the signature
582  * @return GNUNET_SYSERR on error, GNUNET_OK on success
583  */
584 int GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_RsaPrivateKey *key,
585                             const struct GNUNET_CRYPTO_RsaSignaturePurpose
586                             *purpose,
587                             struct GNUNET_CRYPTO_RsaSignature *sig);
588
589
590 /**
591  * Verify signature.  Note that the caller MUST have already
592  * checked that "validate->size" bytes are actually available.
593  *
594  * @param purpose what is the purpose that validate should have?
595  * @param validate block to validate (size, purpose, data)
596  * @param sig signature that is being validated
597  * @param publicKey public key of the signer
598  * @return GNUNET_OK if ok, GNUNET_SYSERR if invalid
599  */
600 int GNUNET_CRYPTO_rsa_verify (uint32_t purpose,
601                               const struct GNUNET_CRYPTO_RsaSignaturePurpose
602                               *validate,
603                               const struct GNUNET_CRYPTO_RsaSignature *sig,
604                               const struct
605                               GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
606                               *publicKey);
607
608
609
610 /**
611  * This function should only be called in testcases
612  * where strong entropy gathering is not desired
613  * (for example, for hostkey generation). 
614  */
615 void GNUNET_CRYPTO_random_disable_entropy_gathering (void);
616
617 #if 0                           /* keep Emacsens' auto-indent happy */
618 {
619 #endif
620 #ifdef __cplusplus
621 }
622 #endif
623
624
625 /* ifndef GNUNET_CRYPTO_LIB_H */
626 #endif
627 /* end of gnunet_crypto_lib.h */