7aedd58a8c3bc7a69c925f545663f3588b2703d5
[oweals/gnunet.git] / src / include / gnunet_crypto_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013 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 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  * @defgroup crypto Cryptographic operations
32  * @defgroup hash Hashing and operations on hashes
33  */
34
35 #ifndef GNUNET_CRYPTO_LIB_H
36 #define GNUNET_CRYPTO_LIB_H
37
38 #ifdef __cplusplus
39 extern "C"
40 {
41 #if 0                           /* keep Emacsens' auto-indent happy */
42 }
43 #endif
44 #endif
45
46 /**
47  * @brief A 512-bit hashcode
48  */
49 struct GNUNET_HashCode;
50
51 /**
52  * The identity of the host (wraps the signing key of the peer).
53  */
54 struct GNUNET_PeerIdentity;
55
56 #include "gnunet_common.h"
57 #include "gnunet_scheduler_lib.h"
58 #include <gcrypt.h>
59
60
61 /**
62  * @brief A 512-bit hashcode
63  */
64 struct GNUNET_HashCode
65 {
66   uint32_t bits[512 / 8 / sizeof (uint32_t)];   /* = 16 */
67 };
68
69
70 /**
71  * Maximum length of an ECC signature.
72  * Note: round up to multiple of 8 minus 2 for alignment.
73  */
74 #define GNUNET_CRYPTO_ECC_SIGNATURE_DATA_ENCODING_LENGTH 126
75
76
77 /**
78  * Desired quality level for random numbers.
79  * @ingroup crypto
80  */
81 enum GNUNET_CRYPTO_Quality
82 {
83   /**
84    * No good quality of the operation is needed (i.e.,
85    * random numbers can be pseudo-random).
86    * @ingroup crypto
87    */
88   GNUNET_CRYPTO_QUALITY_WEAK,
89
90   /**
91    * High-quality operations are desired.
92    * @ingroup crypto
93    */
94   GNUNET_CRYPTO_QUALITY_STRONG,
95
96   /**
97    * Randomness for IVs etc. is required.
98    * @ingroup crypto
99    */
100   GNUNET_CRYPTO_QUALITY_NONCE
101 };
102
103
104 /**
105  * @brief length of the sessionkey in bytes (256 BIT sessionkey)
106  */
107 #define GNUNET_CRYPTO_AES_KEY_LENGTH (256/8)
108
109 /**
110  * Length of a hash value
111  */
112 #define GNUNET_CRYPTO_HASH_LENGTH (512/8)
113
114 /**
115  * How many characters (without 0-terminator) are our ASCII-encoded
116  * public keys (ECDSA/EDDSA/ECDHE).
117  */
118 #define GNUNET_CRYPTO_PKEY_ASCII_LENGTH 52
119
120 /**
121  * @brief 0-terminated ASCII encoding of a struct GNUNET_HashCode.
122  */
123 struct GNUNET_CRYPTO_HashAsciiEncoded
124 {
125   unsigned char encoding[104];
126 };
127
128
129 GNUNET_NETWORK_STRUCT_BEGIN
130
131
132 /**
133  * @brief header of what an ECC signature signs
134  *        this must be followed by "size - 8" bytes of
135  *        the actual signed data
136  */
137 struct GNUNET_CRYPTO_EccSignaturePurpose
138 {
139   /**
140    * How many bytes does this signature sign?
141    * (including this purpose header); in network
142    * byte order (!).
143    */
144   uint32_t size GNUNET_PACKED;
145
146   /**
147    * What does this signature vouch for?  This
148    * must contain a GNUNET_SIGNATURE_PURPOSE_XXX
149    * constant (from gnunet_signatures.h).  In
150    * network byte order!
151    */
152   uint32_t purpose GNUNET_PACKED;
153
154 };
155
156
157 /**
158  * @brief an ECC signature using EdDSA.
159  * See https://gnunet.org/ed25519
160  */
161 struct GNUNET_CRYPTO_EddsaSignature
162 {
163
164   /**
165    * R value.
166    */
167   unsigned char r[256 / 8];
168
169   /**
170    * S value.
171    */
172   unsigned char s[256 / 8];
173
174 };
175
176
177
178 /**
179  * @brief an ECC signature using ECDSA
180  */
181 struct GNUNET_CRYPTO_EcdsaSignature
182 {
183
184   /**
185    * R value.
186    */
187   unsigned char r[256 / 8];
188
189   /**
190    * S value.
191    */
192   unsigned char s[256 / 8];
193
194 };
195
196
197 /**
198  * Public ECC key (always for Curve25519) encoded in a format suitable
199  * for network transmission and EdDSA signatures.
200  */
201 struct GNUNET_CRYPTO_EddsaPublicKey
202 {
203   /**
204    * Q consists of an x- and a y-value, each mod p (256 bits), given
205    * here in affine coordinates and Ed25519 standard compact format.
206    */
207   unsigned char q_y[256 / 8];
208
209 };
210
211
212 /**
213  * Public ECC key (always for Curve25519) encoded in a format suitable
214  * for network transmission and ECDSA signatures.
215  */
216 struct GNUNET_CRYPTO_EcdsaPublicKey
217 {
218   /**
219    * Q consists of an x- and a y-value, each mod p (256 bits), given
220    * here in affine coordinates and Ed25519 standard compact format.
221    */
222   unsigned char q_y[256 / 8];
223
224 };
225
226
227 /**
228  * The identity of the host (wraps the signing key of the peer).
229  */
230 struct GNUNET_PeerIdentity
231 {
232   struct GNUNET_CRYPTO_EddsaPublicKey public_key;
233 };
234
235
236 /**
237  * Public ECC key (always for Curve25519) encoded in a format suitable
238  * for network transmission and encryption (ECDH),
239  * See http://cr.yp.to/ecdh.html
240  */
241 struct GNUNET_CRYPTO_EcdhePublicKey
242 {
243   /**
244    * Q consists of an x- and a y-value, each mod p (256 bits), given
245    * here in affine coordinates and Ed25519 standard compact format.
246    */
247   unsigned char q_y[256 / 8];
248 };
249
250
251 /**
252  * Private ECC key encoded for transmission.  To be used only for ECDH
253  * key exchange (ECDHE to be precise).
254  */
255 struct GNUNET_CRYPTO_EcdhePrivateKey
256 {
257   /**
258    * d is a value mod n, where n has at most 256 bits.
259    */
260   unsigned char d[256 / 8];
261
262 };
263
264 /**
265  * Private ECC key encoded for transmission.  To be used only for ECDSA
266  * signatures.
267  */
268 struct GNUNET_CRYPTO_EcdsaPrivateKey
269 {
270   /**
271    * d is a value mod n, where n has at most 256 bits.
272    */
273   unsigned char d[256 / 8];
274
275 };
276
277 /**
278  * Private ECC key encoded for transmission.  To be used only for EdDSA
279  * signatures.
280  */
281 struct GNUNET_CRYPTO_EddsaPrivateKey
282 {
283   /**
284    * d is a value mod n, where n has at most 256 bits.
285    */
286   unsigned char d[256 / 8];
287
288 };
289
290
291 /**
292  * @brief type for session keys
293  */
294 struct GNUNET_CRYPTO_SymmetricSessionKey
295 {
296   /**
297    * Actual key for AES.
298    */
299   unsigned char aes_key[GNUNET_CRYPTO_AES_KEY_LENGTH];
300
301   /**
302    * Actual key for TwoFish.
303    */
304   unsigned char twofish_key[GNUNET_CRYPTO_AES_KEY_LENGTH];
305
306 };
307
308 GNUNET_NETWORK_STRUCT_END
309
310 /**
311  * @brief IV for sym cipher
312  *
313  * NOTE: must be smaller (!) in size than the
314  * `struct GNUNET_HashCode`.
315  */
316 struct GNUNET_CRYPTO_SymmetricInitializationVector
317 {
318   unsigned char aes_iv[GNUNET_CRYPTO_AES_KEY_LENGTH / 2];
319
320   unsigned char twofish_iv[GNUNET_CRYPTO_AES_KEY_LENGTH / 2];
321 };
322
323
324 /**
325  * @brief type for (message) authentication keys
326  */
327 struct GNUNET_CRYPTO_AuthKey
328 {
329   unsigned char key[GNUNET_CRYPTO_HASH_LENGTH];
330 };
331
332
333 /**
334  * Size of paillier plain texts and public keys.
335  * Private keys and ciphertexts are twice this size.
336  */
337 #define GNUNET_CRYPTO_PAILLIER_BITS 2048
338
339
340 /**
341  * Paillier public key.
342  */
343 struct GNUNET_CRYPTO_PaillierPublicKey
344 {
345   /**
346    * N value.
347    */
348   unsigned char n[GNUNET_CRYPTO_PAILLIER_BITS / 8];
349 };
350
351
352 /**
353  * Paillier public key.
354  */
355 struct GNUNET_CRYPTO_PaillierPrivateKey
356 {
357   /**
358    * Lambda-component of the private key.
359    */
360   unsigned char lambda[GNUNET_CRYPTO_PAILLIER_BITS / 8];
361   /**
362    * Mu-component of the private key.
363    */
364   unsigned char mu[GNUNET_CRYPTO_PAILLIER_BITS / 8];
365 };
366
367
368 /**
369  * Paillier ciphertext.
370  */
371 struct GNUNET_CRYPTO_PaillierCiphertext
372 {
373   /**
374    * Guaranteed minimum number of homomorphic operations with this ciphertext,
375    * in network byte order (NBO).
376    */
377   int32_t remaining_ops GNUNET_PACKED;
378
379   /**
380    * The bits of the ciphertext.
381    */
382   unsigned char bits[GNUNET_CRYPTO_PAILLIER_BITS * 2 / 8];
383 };
384
385
386 /* **************** Functions and Macros ************* */
387
388 /**
389  * @ingroup crypto
390  * Seed a weak random generator. Only #GNUNET_CRYPTO_QUALITY_WEAK-mode generator
391  * can be seeded.
392  *
393  * @param seed the seed to use
394  */
395 void
396 GNUNET_CRYPTO_seed_weak_random (int32_t seed);
397
398
399 /**
400  * Perform an incremental step in a CRC16 (for TCP/IP) calculation.
401  *
402  * @param sum current sum, initially 0
403  * @param buf buffer to calculate CRC over (must be 16-bit aligned)
404  * @param len number of bytes in @a buf, must be multiple of 2
405  * @return updated crc sum (must be subjected to #GNUNET_CRYPTO_crc16_finish to get actual crc16)
406  */
407 uint32_t
408 GNUNET_CRYPTO_crc16_step (uint32_t sum,
409                           const void *buf,
410                           size_t len);
411
412
413 /**
414  * Convert results from GNUNET_CRYPTO_crc16_step to final crc16.
415  *
416  * @param sum cummulative sum
417  * @return crc16 value
418  */
419 uint16_t
420 GNUNET_CRYPTO_crc16_finish (uint32_t sum);
421
422
423 /**
424  * @ingroup hash
425  * Calculate the checksum of a buffer in one step.
426  *
427  * @param buf buffer to calculate CRC over (must be 16-bit aligned)
428  * @param len number of bytes in @a buf, must be multiple of 2
429  * @return crc16 value
430  */
431 uint16_t
432 GNUNET_CRYPTO_crc16_n (const void *buf,
433                        size_t len);
434
435
436 /**
437  * @ingroup hash
438  * Compute the CRC32 checksum for the first len
439  * bytes of the buffer.
440  *
441  * @param buf the data over which we're taking the CRC
442  * @param len the length of the buffer @a buf in bytes
443  * @return the resulting CRC32 checksum
444  */
445 int32_t
446 GNUNET_CRYPTO_crc32_n (const void *buf,
447                        size_t len);
448
449
450 /**
451  * @ingroup crypto
452  * Fill block with a random values.
453  *
454  * @param mode desired quality of the random number
455  * @param buffer the buffer to fill
456  * @param length buffer length
457  */
458 void
459 GNUNET_CRYPTO_random_block (enum GNUNET_CRYPTO_Quality mode,
460                             void *buffer,
461                             size_t length);
462
463 /**
464  * @ingroup crypto
465  * Produce a random value.
466  *
467  * @param mode desired quality of the random number
468  * @param i the upper limit (exclusive) for the random number
469  * @return a random value in the interval [0,@a i) (exclusive).
470  */
471 uint32_t
472 GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode,
473                           uint32_t i);
474
475
476 /**
477  * @ingroup crypto
478  * Random on unsigned 64-bit values.
479  *
480  * @param mode desired quality of the random number
481  * @param max value returned will be in range [0,@a max) (exclusive)
482  * @return random 64-bit number
483  */
484 uint64_t
485 GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode,
486                           uint64_t max);
487
488
489 /**
490  * @ingroup crypto
491  * Get an array with a random permutation of the
492  * numbers 0...n-1.
493  * @param mode #GNUNET_CRYPTO_QUALITY_STRONG if the strong (but expensive) PRNG should be used,
494  *             #GNUNET_CRYPTO_QUALITY_WEAK or #GNUNET_CRYPTO_QUALITY_NONCE otherwise
495  * @param n the size of the array
496  * @return the permutation array (allocated from heap)
497  */
498 unsigned int *
499 GNUNET_CRYPTO_random_permute (enum GNUNET_CRYPTO_Quality mode,
500                               unsigned int n);
501
502
503 /**
504  * @ingroup crypto
505  * Create a new random session key.
506  *
507  * @param key key to initialize
508  */
509 void
510 GNUNET_CRYPTO_symmetric_create_session_key (struct GNUNET_CRYPTO_SymmetricSessionKey *key);
511
512
513 /**
514  * @ingroup crypto
515  * Encrypt a block using a symmetric sessionkey.
516  *
517  * @param block the block to encrypt
518  * @param size the size of the @a block
519  * @param sessionkey the key used to encrypt
520  * @param iv the initialization vector to use, use INITVALUE
521  *        for streams.
522  * @return the size of the encrypted block, -1 for errors
523  */
524 ssize_t
525 GNUNET_CRYPTO_symmetric_encrypt (const void *block,
526                                  size_t size,
527                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *sessionkey,
528                                  const struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
529                                  void *result);
530
531
532 /**
533  * @ingroup crypto
534  * Decrypt a given block using a symmetric sessionkey.
535  *
536  * @param block the data to decrypt, encoded as returned by encrypt
537  * @param size how big is the block?
538  * @param sessionkey the key used to decrypt
539  * @param iv the initialization vector to use
540  * @param result address to store the result at
541  * @return -1 on failure, size of decrypted block on success
542  */
543 ssize_t
544 GNUNET_CRYPTO_symmetric_decrypt (const void *block,
545                                  size_t size,
546                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *sessionkey,
547                                  const struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
548                                  void *result);
549
550
551 /**
552  * @ingroup crypto
553  * @brief Derive an IV
554  * @param iv initialization vector
555  * @param skey session key
556  * @param salt salt for the derivation
557  * @param salt_len size of the @a salt
558  * @param ... pairs of void * & size_t for context chunks, terminated by NULL
559  */
560 void
561 GNUNET_CRYPTO_symmetric_derive_iv (struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
562                                    const struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
563                                    const void *salt,
564                                    size_t salt_len, ...);
565
566
567 /**
568  * @brief Derive an IV
569  * @param iv initialization vector
570  * @param skey session key
571  * @param salt salt for the derivation
572  * @param salt_len size of the @a salt
573  * @param argp pairs of void * & size_t for context chunks, terminated by NULL
574  */
575 void
576 GNUNET_CRYPTO_symmetric_derive_iv_v (struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
577                                      const struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
578                                      const void *salt,
579                                      size_t salt_len,
580                                      va_list argp);
581
582
583 /**
584  * @ingroup hash
585  * Convert hash to ASCII encoding.
586  * @param block the hash code
587  * @param result where to store the encoding (struct GNUNET_CRYPTO_HashAsciiEncoded can be
588  *  safely cast to char*, a '\\0' termination is set).
589  */
590 void
591 GNUNET_CRYPTO_hash_to_enc (const struct GNUNET_HashCode *block,
592                            struct GNUNET_CRYPTO_HashAsciiEncoded *result);
593
594
595 /**
596  * @ingroup hash
597  * Convert ASCII encoding back to a 'struct GNUNET_HashCode'
598  *
599  * @param enc the encoding
600  * @param enclen number of characters in @a enc (without 0-terminator, which can be missing)
601  * @param result where to store the hash code
602  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
603  */
604 int
605 GNUNET_CRYPTO_hash_from_string2 (const char *enc,
606                                  size_t enclen,
607                                  struct GNUNET_HashCode *result);
608
609
610 /**
611  * @ingroup hash
612  * Convert ASCII encoding back to `struct GNUNET_HashCode`
613  *
614  * @param enc the encoding
615  * @param result where to store the hash code
616  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
617  */
618 #define GNUNET_CRYPTO_hash_from_string(enc, result) \
619   GNUNET_CRYPTO_hash_from_string2 (enc, strlen(enc), result)
620
621
622 /**
623  * @ingroup hash
624  *
625  * Compute the distance between 2 hashcodes.  The
626  * computation must be fast, not involve @a a[0] or @a a[4] (they're used
627  * elsewhere), and be somewhat consistent. And of course, the result
628  * should be a positive number.
629  *
630  * @param a some hash code
631  * @param b some hash code
632  * @return number between 0 and UINT32_MAX
633  */
634 uint32_t
635 GNUNET_CRYPTO_hash_distance_u32 (const struct GNUNET_HashCode *a,
636                                  const struct GNUNET_HashCode *b);
637
638
639 /**
640  * @ingroup hash
641  * Compute hash of a given block.
642  *
643  * @param block the data to hash
644  * @param size size of the @a block
645  * @param ret pointer to where to write the hashcode
646  */
647 void
648 GNUNET_CRYPTO_hash (const void *block,
649                     size_t size,
650                     struct GNUNET_HashCode *ret);
651
652
653 /**
654  * Context for cummulative hashing.
655  */
656 struct GNUNET_HashContext;
657
658
659 /**
660  * Start incremental hashing operation.
661  *
662  * @return context for incremental hash computation
663  */
664 struct GNUNET_HashContext *
665 GNUNET_CRYPTO_hash_context_start (void);
666
667
668 /**
669  * Add data to be hashed.
670  *
671  * @param hc cummulative hash context
672  * @param buf data to add
673  * @param size number of bytes in @a buf
674  */
675 void
676 GNUNET_CRYPTO_hash_context_read (struct GNUNET_HashContext *hc,
677                                  const void *buf,
678                                  size_t size);
679
680
681 /**
682  * Finish the hash computation.
683  *
684  * @param hc hash context to use, is freed in the process
685  * @param r_hash where to write the latest / final hash code
686  */
687 void
688 GNUNET_CRYPTO_hash_context_finish (struct GNUNET_HashContext *hc,
689                                    struct GNUNET_HashCode *r_hash);
690
691
692 /**
693  * Abort hashing, do not bother calculating final result.
694  *
695  * @param hc hash context to destroy
696  */
697 void
698 GNUNET_CRYPTO_hash_context_abort (struct GNUNET_HashContext *hc);
699
700
701 /**
702  * @ingroup hash
703  * Calculate HMAC of a message (RFC 2104)
704  *
705  * @param key secret key
706  * @param plaintext input plaintext
707  * @param plaintext_len length of @a plaintext
708  * @param hmac where to store the hmac
709  */
710 void
711 GNUNET_CRYPTO_hmac (const struct GNUNET_CRYPTO_AuthKey *key,
712                     const void *plaintext,
713                     size_t plaintext_len,
714                     struct GNUNET_HashCode *hmac);
715
716
717 /**
718  * Function called once the hash computation over the
719  * specified file has completed.
720  *
721  * @param cls closure
722  * @param res resulting hash, NULL on error
723  */
724 typedef void
725 (*GNUNET_CRYPTO_HashCompletedCallback) (void *cls,
726                                         const struct GNUNET_HashCode *res);
727
728
729 /**
730  * Handle to file hashing operation.
731  */
732 struct GNUNET_CRYPTO_FileHashContext;
733
734
735 /**
736  * @ingroup hash
737  * Compute the hash of an entire file.
738  *
739  * @param priority scheduling priority to use
740  * @param filename name of file to hash
741  * @param blocksize number of bytes to process in one task
742  * @param callback function to call upon completion
743  * @param callback_cls closure for @a callback
744  * @return NULL on (immediate) errror
745  */
746 struct GNUNET_CRYPTO_FileHashContext *
747 GNUNET_CRYPTO_hash_file (enum GNUNET_SCHEDULER_Priority priority,
748                          const char *filename,
749                          size_t blocksize,
750                          GNUNET_CRYPTO_HashCompletedCallback callback,
751                          void *callback_cls);
752
753
754 /**
755  * Cancel a file hashing operation.
756  *
757  * @param fhc operation to cancel (callback must not yet have been invoked)
758  */
759 void
760 GNUNET_CRYPTO_hash_file_cancel (struct GNUNET_CRYPTO_FileHashContext *fhc);
761
762
763 /**
764  * @ingroup hash
765  * Create a random hash code.
766  *
767  * @param mode desired quality level
768  * @param result hash code that is randomized
769  */
770 void
771 GNUNET_CRYPTO_hash_create_random (enum GNUNET_CRYPTO_Quality mode,
772                                   struct GNUNET_HashCode *result);
773
774
775 /**
776  * @ingroup hash
777  * compute @a result = @a b - @a a
778  *
779  * @param a some hash code
780  * @param b some hash code
781  * @param result set to @a b - @a a
782  */
783 void
784 GNUNET_CRYPTO_hash_difference (const struct GNUNET_HashCode *a,
785                                const struct GNUNET_HashCode *b,
786                                struct GNUNET_HashCode *result);
787
788
789 /**
790  * @ingroup hash
791  * compute @a result = @a a + @a delta
792  *
793  * @param a some hash code
794  * @param delta some hash code
795  * @param result set to @a a + @a delta
796  */
797 void
798 GNUNET_CRYPTO_hash_sum (const struct GNUNET_HashCode *a,
799                         const struct GNUNET_HashCode *delta,
800                         struct GNUNET_HashCode *result);
801
802
803 /**
804  * @ingroup hash
805  * compute result = a ^ b
806  *
807  * @param a some hash code
808  * @param b some hash code
809  * @param result set to @a a ^ @a b
810  */
811 void
812 GNUNET_CRYPTO_hash_xor (const struct GNUNET_HashCode *a,
813                         const struct GNUNET_HashCode *b,
814                         struct GNUNET_HashCode *result);
815
816
817 /**
818  * @ingroup hash
819  * Convert a hashcode into a key.
820  *
821  * @param hc hash code that serves to generate the key
822  * @param skey set to a valid session key
823  * @param iv set to a valid initialization vector
824  */
825 void
826 GNUNET_CRYPTO_hash_to_aes_key (const struct GNUNET_HashCode * hc,
827                                struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
828                                struct GNUNET_CRYPTO_SymmetricInitializationVector *iv);
829
830
831 /**
832  * @ingroup hash
833  * Obtain a bit from a hashcode.
834  *
835  * @param code the `struct GNUNET_HashCode` to index bit-wise
836  * @param bit index into the hashcode, [0...159]
837  * @return Bit \a bit from hashcode \a code, -1 for invalid index
838  */
839 int
840 GNUNET_CRYPTO_hash_get_bit (const struct GNUNET_HashCode *code,
841                             unsigned int bit);
842
843
844 /**
845  * @ingroup hash
846  * Determine how many low order bits match in two
847  * `struct GNUNET_HashCodes`.  i.e. - 010011 and 011111 share
848  * the first two lowest order bits, and therefore the
849  * return value is two (NOT XOR distance, nor how many
850  * bits match absolutely!).
851  *
852  * @param first the first hashcode
853  * @param second the hashcode to compare first to
854  * @return the number of bits that match
855  */
856 unsigned int
857 GNUNET_CRYPTO_hash_matching_bits (const struct GNUNET_HashCode *first,
858                                   const struct GNUNET_HashCode *second);
859
860
861 /**
862  * @ingroup hash
863  * Compare function for HashCodes, producing a total ordering
864  * of all hashcodes.
865  *
866  * @param h1 some hash code
867  * @param h2 some hash code
868  * @return 1 if @a h1 > @a h2, -1 if @a h1 < @a h2 and 0 if @a h1 == @a h2.
869  */
870 int
871 GNUNET_CRYPTO_hash_cmp (const struct GNUNET_HashCode *h1,
872                         const struct GNUNET_HashCode *h2);
873
874
875 /**
876  * @ingroup hash
877  * Find out which of the two GNUNET_CRYPTO_hash codes is closer to target
878  * in the XOR metric (Kademlia).
879  *
880  * @param h1 some hash code
881  * @param h2 some hash code
882  * @param target some hash code
883  * @return -1 if @a h1 is closer, 1 if @a h2 is closer and 0 if @a h1== @a h2.
884  */
885 int
886 GNUNET_CRYPTO_hash_xorcmp (const struct GNUNET_HashCode *h1,
887                            const struct GNUNET_HashCode *h2,
888                            const struct GNUNET_HashCode *target);
889
890
891 /**
892  * @ingroup hash
893  * @brief Derive an authentication key
894  * @param key authentication key
895  * @param rkey root key
896  * @param salt salt
897  * @param salt_len size of the salt
898  * @param argp pair of void * & size_t for context chunks, terminated by NULL
899  */
900 void
901 GNUNET_CRYPTO_hmac_derive_key_v (struct GNUNET_CRYPTO_AuthKey *key,
902                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
903                                  const void *salt, size_t salt_len,
904                                  va_list argp);
905
906
907 /**
908  * @ingroup hash
909  * @brief Derive an authentication key
910  * @param key authentication key
911  * @param rkey root key
912  * @param salt salt
913  * @param salt_len size of the salt
914  * @param ... pair of void * & size_t for context chunks, terminated by NULL
915  */
916 void
917 GNUNET_CRYPTO_hmac_derive_key (struct GNUNET_CRYPTO_AuthKey *key,
918                                const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
919                                const void *salt, size_t salt_len,
920                                ...);
921
922
923 /**
924  * @ingroup hash
925  * @brief Derive key
926  * @param result buffer for the derived key, allocated by caller
927  * @param out_len desired length of the derived key
928  * @param xtr_algo hash algorithm for the extraction phase, GCRY_MD_...
929  * @param prf_algo hash algorithm for the expansion phase, GCRY_MD_...
930  * @param xts salt
931  * @param xts_len length of @a xts
932  * @param skm source key material
933  * @param skm_len length of @a skm
934  * @param ... pair of void * & size_t for context chunks, terminated by NULL
935  * @return #GNUNET_YES on success
936  */
937 int
938 GNUNET_CRYPTO_hkdf (void *result,
939                     size_t out_len,
940                     int xtr_algo,
941                     int prf_algo,
942                     const void *xts,
943                     size_t xts_len,
944                     const void *skm,
945                     size_t skm_len,
946                     ...);
947
948
949 /**
950  * @ingroup hash
951  * @brief Derive key
952  * @param result buffer for the derived key, allocated by caller
953  * @param out_len desired length of the derived key
954  * @param xtr_algo hash algorithm for the extraction phase, GCRY_MD_...
955  * @param prf_algo hash algorithm for the expansion phase, GCRY_MD_...
956  * @param xts salt
957  * @param xts_len length of @a xts
958  * @param skm source key material
959  * @param skm_len length of @a skm
960  * @param argp va_list of void * & size_t pairs for context chunks
961  * @return #GNUNET_YES on success
962  */
963 int
964 GNUNET_CRYPTO_hkdf_v (void *result,
965                       size_t out_len,
966                       int xtr_algo,
967                       int prf_algo,
968                       const void *xts,
969                       size_t xts_len,
970                       const void *skm,
971                       size_t skm_len,
972                       va_list argp);
973
974
975 /**
976  * @brief Derive key
977  * @param result buffer for the derived key, allocated by caller
978  * @param out_len desired length of the derived key
979  * @param xts salt
980  * @param xts_len length of @a xts
981  * @param skm source key material
982  * @param skm_len length of @a skm
983  * @param argp va_list of void * & size_t pairs for context chunks
984  * @return #GNUNET_YES on success
985  */
986 int
987 GNUNET_CRYPTO_kdf_v (void *result,
988                      size_t out_len,
989                      const void *xts,
990                      size_t xts_len,
991                      const void *skm,
992                      size_t skm_len,
993                      va_list argp);
994
995
996 /**
997  * @ingroup hash
998  * @brief Derive key
999  * @param result buffer for the derived key, allocated by caller
1000  * @param out_len desired length of the derived key
1001  * @param xts salt
1002  * @param xts_len length of @a xts
1003  * @param skm source key material
1004  * @param skm_len length of @a skm
1005  * @param ... void * & size_t pairs for context chunks
1006  * @return #GNUNET_YES on success
1007  */
1008 int
1009 GNUNET_CRYPTO_kdf (void *result,
1010                    size_t out_len,
1011                    const void *xts,
1012                    size_t xts_len,
1013                    const void *skm,
1014                    size_t skm_len,
1015                    ...);
1016
1017
1018 /**
1019  * @ingroup crypto
1020  * Extract the public key for the given private key.
1021  *
1022  * @param priv the private key
1023  * @param pub where to write the public key
1024  */
1025 void
1026 GNUNET_CRYPTO_ecdsa_key_get_public (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1027                                     struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1028
1029 /**
1030  * @ingroup crypto
1031  * Extract the public key for the given private key.
1032  *
1033  * @param priv the private key
1034  * @param pub where to write the public key
1035  */
1036 void
1037 GNUNET_CRYPTO_eddsa_key_get_public (const struct GNUNET_CRYPTO_EddsaPrivateKey *priv,
1038                                     struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1039
1040
1041
1042 /**
1043  * @ingroup crypto
1044  * Convert ECDSA public key to ECDHE public key.
1045  * Please be very careful when using this function, as mixing
1046  * cryptographic primitives is not always healthy.
1047  *
1048  * @param ecdsa ecdsa public key
1049  * @param ecdhe[OUT] ecdhe public key
1050  */
1051 void
1052 GNUNET_CRYPTO_ecdsa_public_to_ecdhe (const struct GNUNET_CRYPTO_EcdsaPublicKey *ecdsa,
1053                                      struct GNUNET_CRYPTO_EcdhePublicKey *ecdhe);
1054
1055
1056 /**
1057  * @ingroup crypto
1058  * Convert ECDSA private key to ECDHE private key.
1059  * Please be very careful when using this function, as mixing
1060  * cryptographic primitives is not always healthy.
1061  *
1062  * @param ecdsa ecdsa private key
1063  * @param ecdhe[OUT] ecdhe private key
1064  */
1065 void
1066 GNUNET_CRYPTO_ecdsa_private_to_ecdhe (const struct GNUNET_CRYPTO_EcdsaPrivateKey *ecdsa,
1067                                      struct GNUNET_CRYPTO_EcdhePrivateKey *ecdhe);
1068
1069
1070 /**
1071  * @ingroup crypto
1072  * Extract the public key for the given private key.
1073  *
1074  * @param priv the private key
1075  * @param pub where to write the public key
1076  */
1077 void
1078 GNUNET_CRYPTO_ecdhe_key_get_public (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1079                                     struct GNUNET_CRYPTO_EcdhePublicKey *pub);
1080
1081
1082 /**
1083  * Convert a public key to a string.
1084  *
1085  * @param pub key to convert
1086  * @return string representing @a pub
1087  */
1088 char *
1089 GNUNET_CRYPTO_ecdsa_public_key_to_string (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1090
1091
1092 /**
1093  * Convert a public key to a string.
1094  *
1095  * @param pub key to convert
1096  * @return string representing @a pub
1097  */
1098 char *
1099 GNUNET_CRYPTO_eddsa_public_key_to_string (const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1100
1101
1102 /**
1103  * Convert a string representing a public key to a public key.
1104  *
1105  * @param enc encoded public key
1106  * @param enclen number of bytes in @a enc (without 0-terminator)
1107  * @param pub where to store the public key
1108  * @return #GNUNET_OK on success
1109  */
1110 int
1111 GNUNET_CRYPTO_ecdsa_public_key_from_string (const char *enc,
1112                                             size_t enclen,
1113                                             struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1114
1115
1116 /**
1117  * Convert a string representing a private key to a private key.
1118  *
1119  * @param enc encoded public key
1120  * @param enclen number of bytes in @a enc (without 0-terminator)
1121  * @param priv where to store the private key
1122  * @return #GNUNET_OK on success
1123  */
1124 int
1125 GNUNET_CRYPTO_eddsa_private_key_from_string (const char *enc,
1126                                              size_t enclen,
1127                                              struct GNUNET_CRYPTO_EddsaPrivateKey *pub);
1128
1129
1130 /**
1131  * Convert a string representing a public key to a public key.
1132  *
1133  * @param enc encoded public key
1134  * @param enclen number of bytes in @a enc (without 0-terminator)
1135  * @param pub where to store the public key
1136  * @return #GNUNET_OK on success
1137  */
1138 int
1139 GNUNET_CRYPTO_eddsa_public_key_from_string (const char *enc,
1140                                             size_t enclen,
1141                                             struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1142
1143
1144 /**
1145  * @ingroup crypto
1146  * Create a new private key by reading it from a file.  If the
1147  * files does not exist, create a new key and write it to the
1148  * file.  Caller must free return value.  Note that this function
1149  * can not guarantee that another process might not be trying
1150  * the same operation on the same file at the same time.
1151  * If the contents of the file
1152  * are invalid the old file is deleted and a fresh key is
1153  * created.
1154  *
1155  * @param filename name of file to use to store the key
1156  * @return new private key, NULL on error (for example,
1157  *   permission denied); free using #GNUNET_free
1158  */
1159 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1160 GNUNET_CRYPTO_ecdsa_key_create_from_file (const char *filename);
1161
1162
1163 /**
1164  * @ingroup crypto
1165  * Create a new private key by reading it from a file.  If the
1166  * files does not exist, create a new key and write it to the
1167  * file.  Caller must free return value.  Note that this function
1168  * can not guarantee that another process might not be trying
1169  * the same operation on the same file at the same time.
1170  * If the contents of the file
1171  * are invalid the old file is deleted and a fresh key is
1172  * created.
1173  *
1174  * @param filename name of file to use to store the key
1175  * @return new private key, NULL on error (for example,
1176  *   permission denied); free using #GNUNET_free
1177  */
1178 struct GNUNET_CRYPTO_EddsaPrivateKey *
1179 GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename);
1180
1181 struct GNUNET_CONFIGURATION_Handle;
1182
1183
1184 /**
1185  * @ingroup crypto
1186  * Create a new private key by reading our peer's key from
1187  * the file specified in the configuration.
1188  *
1189  * @param cfg the configuration to use
1190  * @return new private key, NULL on error (for example,
1191  *   permission denied); free using #GNUNET_free
1192  */
1193 struct GNUNET_CRYPTO_EddsaPrivateKey *
1194 GNUNET_CRYPTO_eddsa_key_create_from_configuration (const struct GNUNET_CONFIGURATION_Handle *cfg);
1195
1196
1197 /**
1198  * @ingroup crypto
1199  * Create a new private key. Caller must free return value.
1200  *
1201  * @return fresh private key; free using #GNUNET_free
1202  */
1203 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1204 GNUNET_CRYPTO_ecdsa_key_create (void);
1205
1206
1207 /**
1208  * @ingroup crypto
1209  * Create a new private key. Caller must free return value.
1210  *
1211  * @return fresh private key; free using #GNUNET_free
1212  */
1213 struct GNUNET_CRYPTO_EddsaPrivateKey *
1214 GNUNET_CRYPTO_eddsa_key_create (void);
1215
1216
1217 /**
1218  * @ingroup crypto
1219  * Create a new private key. Caller must free return value.
1220  *
1221  * @return fresh private key; free using #GNUNET_free
1222  */
1223 struct GNUNET_CRYPTO_EcdhePrivateKey *
1224 GNUNET_CRYPTO_ecdhe_key_create (void);
1225
1226
1227 /**
1228  * @ingroup crypto
1229  * Clear memory that was used to store a private key.
1230  *
1231  * @param pk location of the key
1232  */
1233 void
1234 GNUNET_CRYPTO_eddsa_key_clear (struct GNUNET_CRYPTO_EddsaPrivateKey *pk);
1235
1236
1237 /**
1238  * @ingroup crypto
1239  * Clear memory that was used to store a private key.
1240  *
1241  * @param pk location of the key
1242  */
1243 void
1244 GNUNET_CRYPTO_ecdsa_key_clear (struct GNUNET_CRYPTO_EcdsaPrivateKey *pk);
1245
1246 /**
1247  * @ingroup crypto
1248  * Clear memory that was used to store a private key.
1249  *
1250  * @param pk location of the key
1251  */
1252 void
1253 GNUNET_CRYPTO_ecdhe_key_clear (struct GNUNET_CRYPTO_EcdhePrivateKey *pk);
1254
1255
1256 /**
1257  * @ingroup crypto
1258  * Get the shared private key we use for anonymous users.
1259  *
1260  * @return "anonymous" private key; do not free
1261  */
1262 const struct GNUNET_CRYPTO_EcdsaPrivateKey *
1263 GNUNET_CRYPTO_ecdsa_key_get_anonymous (void);
1264
1265
1266 /**
1267  * @ingroup crypto
1268  * Setup a hostkey file for a peer given the name of the
1269  * configuration file (!).  This function is used so that
1270  * at a later point code can be certain that reading a
1271  * hostkey is fast (for example in time-dependent testcases).
1272 *
1273  * @param cfg_name name of the configuration file to use
1274  */
1275 void
1276 GNUNET_CRYPTO_eddsa_setup_hostkey (const char *cfg_name);
1277
1278
1279 /**
1280  * @ingroup crypto
1281  * Retrieve the identity of the host's peer.
1282  *
1283  * @param cfg configuration to use
1284  * @param dst pointer to where to write the peer identity
1285  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the identity
1286  *         could not be retrieved
1287  */
1288 int
1289 GNUNET_CRYPTO_get_peer_identity (const struct GNUNET_CONFIGURATION_Handle *cfg,
1290                                  struct GNUNET_PeerIdentity *dst);
1291
1292
1293 /**
1294  * Compare two Peer Identities.
1295  *
1296  * @param first first peer identity
1297  * @param second second peer identity
1298  * @return bigger than 0 if first > second,
1299  *         0 if they are the same
1300  *         smaller than 0 if second > first
1301  */
1302 int
1303 GNUNET_CRYPTO_cmp_peer_identity (const struct GNUNET_PeerIdentity *first,
1304                                  const struct GNUNET_PeerIdentity *second);
1305
1306
1307 /**
1308  * @ingroup crypto
1309  * Derive key material from a public and a private ECC key.
1310  *
1311  * @param priv private key to use for the ECDH (x)
1312  * @param pub public key to use for the ECDH (yG)
1313  * @param key_material where to write the key material (xyG)
1314  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1315  */
1316 int
1317 GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1318                         const struct GNUNET_CRYPTO_EcdhePublicKey *pub,
1319                         struct GNUNET_HashCode *key_material);
1320
1321
1322 /**
1323  * @ingroup crypto
1324  * EdDSA sign a given block.
1325  *
1326  * @param priv private key to use for the signing
1327  * @param purpose what to sign (size, purpose)
1328  * @param sig where to write the signature
1329  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1330  */
1331 int
1332 GNUNET_CRYPTO_eddsa_sign (const struct GNUNET_CRYPTO_EddsaPrivateKey *priv,
1333                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1334                           struct GNUNET_CRYPTO_EddsaSignature *sig);
1335
1336
1337 /**
1338  * @ingroup crypto
1339  * ECDSA Sign a given block.
1340  *
1341  * @param priv private key to use for the signing
1342  * @param purpose what to sign (size, purpose)
1343  * @param sig where to write the signature
1344  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1345  */
1346 int
1347 GNUNET_CRYPTO_ecdsa_sign (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1348                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1349                           struct GNUNET_CRYPTO_EcdsaSignature *sig);
1350
1351 /**
1352  * @ingroup crypto
1353  * Verify EdDSA signature.
1354  *
1355  * @param purpose what is the purpose that the signature should have?
1356  * @param validate block to validate (size, purpose, data)
1357  * @param sig signature that is being validated
1358  * @param pub public key of the signer
1359  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1360  */
1361 int
1362 GNUNET_CRYPTO_eddsa_verify (uint32_t purpose,
1363                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1364                             const struct GNUNET_CRYPTO_EddsaSignature *sig,
1365                             const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1366
1367
1368
1369 /**
1370  * @ingroup crypto
1371  * Verify ECDSA signature.
1372  *
1373  * @param purpose what is the purpose that the signature should have?
1374  * @param validate block to validate (size, purpose, data)
1375  * @param sig signature that is being validated
1376  * @param pub public key of the signer
1377  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1378  */
1379 int
1380 GNUNET_CRYPTO_ecdsa_verify (uint32_t purpose,
1381                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1382                             const struct GNUNET_CRYPTO_EcdsaSignature *sig,
1383                             const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1384
1385
1386 /**
1387  * @ingroup crypto
1388  * Derive a private key from a given private key and a label.
1389  * Essentially calculates a private key 'h = H(l,P) * d mod n'
1390  * where n is the size of the ECC group and P is the public
1391  * key associated with the private key 'd'.
1392  *
1393  * @param priv original private key
1394  * @param label label to use for key deriviation
1395  * @param context additional context to use for HKDF of 'h';
1396  *        typically the name of the subsystem/application
1397  * @return derived private key
1398  */
1399 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1400 GNUNET_CRYPTO_ecdsa_private_key_derive (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1401                                         const char *label,
1402                                         const char *context);
1403
1404
1405 /**
1406  * @ingroup crypto
1407  * Derive a public key from a given public key and a label.
1408  * Essentially calculates a public key 'V = H(l,P) * P'.
1409  *
1410  * @param pub original public key
1411  * @param label label to use for key deriviation
1412  * @param context additional context to use for HKDF of 'h'.
1413  *        typically the name of the subsystem/application
1414  * @param result where to write the derived public key
1415  */
1416 void
1417 GNUNET_CRYPTO_ecdsa_public_key_derive (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub,
1418                                        const char *label,
1419                                        const char *context,
1420                                        struct GNUNET_CRYPTO_EcdsaPublicKey *result);
1421
1422
1423 /**
1424  * Output the given MPI value to the given buffer in network
1425  * byte order.  The MPI @a val may not be negative.
1426  *
1427  * @param buf where to output to
1428  * @param size number of bytes in @a buf
1429  * @param val value to write to @a buf
1430  */
1431 void
1432 GNUNET_CRYPTO_mpi_print_unsigned (void *buf,
1433                                   size_t size,
1434                                   gcry_mpi_t val);
1435
1436
1437 /**
1438  * Convert data buffer into MPI value.
1439  * The buffer is interpreted as network
1440  * byte order, unsigned integer.
1441  *
1442  * @param result where to store MPI value (allocated)
1443  * @param data raw data (GCRYMPI_FMT_USG)
1444  * @param size number of bytes in @a data
1445  */
1446 void
1447 GNUNET_CRYPTO_mpi_scan_unsigned (gcry_mpi_t *result,
1448                                  const void *data,
1449                                  size_t size);
1450
1451
1452 /**
1453  * Create a freshly generated paillier public key.
1454  *
1455  * @param[out] public_key Where to store the public key?
1456  * @param[out] private_key Where to store the private key?
1457  */
1458 void
1459 GNUNET_CRYPTO_paillier_create (struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1460                                struct GNUNET_CRYPTO_PaillierPrivateKey *private_key);
1461
1462
1463 /**
1464  * Encrypt a plaintext with a paillier public key.
1465  *
1466  * @param public_key Public key to use.
1467  * @param m Plaintext to encrypt.
1468  * @param desired_ops How many homomorphic ops the caller intends to use
1469  * @param[out] ciphertext Encrytion of @a plaintext with @a public_key.
1470  * @return guaranteed number of supported homomorphic operations >= 1,
1471  *         or desired_ops, in case that is lower,
1472  *         or -1 if less than one homomorphic operation is possible
1473  */
1474 int
1475 GNUNET_CRYPTO_paillier_encrypt (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1476                                 const gcry_mpi_t m,
1477                                 int desired_ops,
1478                                 struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext);
1479
1480
1481 /**
1482  * Decrypt a paillier ciphertext with a private key.
1483  *
1484  * @param private_key Private key to use for decryption.
1485  * @param public_key Public key to use for decryption.
1486  * @param ciphertext Ciphertext to decrypt.
1487  * @param[out] m Decryption of @a ciphertext with @private_key.
1488  */
1489 void
1490 GNUNET_CRYPTO_paillier_decrypt (const struct GNUNET_CRYPTO_PaillierPrivateKey *private_key,
1491                                 const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1492                                 const struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext,
1493                                 gcry_mpi_t m);
1494
1495
1496 /**
1497  * Compute a ciphertext that represents the sum of the plaintext in @a x1 and @a x2
1498  *
1499  * Note that this operation can only be done a finite number of times
1500  * before an overflow occurs.
1501  *
1502  * @param public_key Public key to use for encryption.
1503  * @param c1 Paillier cipher text.
1504  * @param c2 Paillier cipher text.
1505  * @param[out] result Result of the homomorphic operation.
1506  * @return #GNUNET_OK if the result could be computed,
1507  *         #GNUNET_SYSERR if no more homomorphic operations are remaining.
1508  */
1509 int
1510 GNUNET_CRYPTO_paillier_hom_add (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1511                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c1,
1512                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c2,
1513                                 struct GNUNET_CRYPTO_PaillierCiphertext *result);
1514
1515
1516 /**
1517  * Get the number of remaining supported homomorphic operations.
1518  *
1519  * @param c Paillier cipher text.
1520  * @return the number of remaining homomorphic operations
1521  */
1522 int
1523 GNUNET_CRYPTO_paillier_hom_get_remaining (const struct GNUNET_CRYPTO_PaillierCiphertext *c);
1524
1525
1526 /* ********* Chaum-style RSA-based blind signatures ******************* */
1527
1528
1529
1530
1531 /**
1532  * The private information of an RSA key pair.
1533  */
1534 struct GNUNET_CRYPTO_rsa_PrivateKey;
1535
1536 /**
1537  * The public information of an RSA key pair.
1538  */
1539 struct GNUNET_CRYPTO_rsa_PublicKey;
1540
1541 /**
1542  * Key used to blind a message
1543  */
1544 struct GNUNET_CRYPTO_rsa_BlindingKey;
1545
1546 /**
1547  * @brief an RSA signature
1548  */
1549 struct GNUNET_CRYPTO_rsa_Signature;
1550
1551
1552 /**
1553  * Create a new private key. Caller must free return value.
1554  *
1555  * @param len length of the key in bits (i.e. 2048)
1556  * @return fresh private key
1557  */
1558 struct GNUNET_CRYPTO_rsa_PrivateKey *
1559 GNUNET_CRYPTO_rsa_private_key_create (unsigned int len);
1560
1561
1562 /**
1563  * Free memory occupied by the private key.
1564  *
1565  * @param key pointer to the memory to free
1566  */
1567 void
1568 GNUNET_CRYPTO_rsa_private_key_free (struct GNUNET_CRYPTO_rsa_PrivateKey *key);
1569
1570
1571 /**
1572  * Encode the private key in a format suitable for
1573  * storing it into a file.
1574  *
1575  * @param key the private key
1576  * @param[out] buffer set to a buffer with the encoded key
1577  * @return size of memory allocatedin @a buffer
1578  */
1579 size_t
1580 GNUNET_CRYPTO_rsa_private_key_encode (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1581                               char **buffer);
1582
1583
1584 /**
1585  * Decode the private key from the data-format back
1586  * to the "normal", internal format.
1587  *
1588  * @param buf the buffer where the private key data is stored
1589  * @param len the length of the data in @a buf
1590  * @return NULL on error
1591  */
1592 struct GNUNET_CRYPTO_rsa_PrivateKey *
1593 GNUNET_CRYPTO_rsa_private_key_decode (const char *buf,
1594                               size_t len);
1595
1596
1597 /**
1598  * Extract the public key of the given private key.
1599  *
1600  * @param priv the private key
1601  * @retur NULL on error, otherwise the public key
1602  */
1603 struct GNUNET_CRYPTO_rsa_PublicKey *
1604 GNUNET_CRYPTO_rsa_private_key_get_public (const struct GNUNET_CRYPTO_rsa_PrivateKey *priv);
1605
1606
1607 /**
1608  * Compute hash over the public key.
1609  *
1610  * @param key public key to hash
1611  * @param hc where to store the hash code
1612  */
1613 void
1614 GNUNET_CRYPTO_rsa_public_key_hash (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1615                                    struct GNUNET_HashCode *hc);
1616
1617
1618 /**
1619  * Free memory occupied by the public key.
1620  *
1621  * @param key pointer to the memory to free
1622  */
1623 void
1624 GNUNET_CRYPTO_rsa_public_key_free (struct GNUNET_CRYPTO_rsa_PublicKey *key);
1625
1626
1627 /**
1628  * Encode the public key in a format suitable for
1629  * storing it into a file.
1630  *
1631  * @param key the private key
1632  * @param[out] buffer set to a buffer with the encoded key
1633  * @return size of memory allocated in @a buffer
1634  */
1635 size_t
1636 GNUNET_CRYPTO_rsa_public_key_encode (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1637                              char **buffer);
1638
1639
1640 /**
1641  * Decode the public key from the data-format back
1642  * to the "normal", internal format.
1643  *
1644  * @param buf the buffer where the public key data is stored
1645  * @param len the length of the data in @a buf
1646  * @return NULL on error
1647  */
1648 struct GNUNET_CRYPTO_rsa_PublicKey *
1649 GNUNET_CRYPTO_rsa_public_key_decode (const char *buf,
1650                              size_t len);
1651
1652
1653 /**
1654  * Create a blinding key
1655  *
1656  * @param len length of the key in bits (i.e. 2048)
1657  * @return the newly created blinding key
1658  */
1659 struct GNUNET_CRYPTO_rsa_BlindingKey *
1660 GNUNET_CRYPTO_rsa_blinding_key_create (unsigned int len);
1661
1662
1663 /**
1664  * Destroy a blinding key
1665  *
1666  * @param bkey the blinding key to destroy
1667  */
1668 void
1669 GNUNET_CRYPTO_rsa_blinding_key_free (struct GNUNET_CRYPTO_rsa_BlindingKey *bkey);
1670
1671
1672 /**
1673  * Encode the blinding key in a format suitable for
1674  * storing it into a file.
1675  *
1676  * @param bkey the blinding key
1677  * @param[out] buffer set to a buffer with the encoded key
1678  * @return size of memory allocated in @a buffer
1679  */
1680 size_t
1681 GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1682                                char **buffer);
1683
1684
1685 /**
1686  * Decode the blinding key from the data-format back
1687  * to the "normal", internal format.
1688  *
1689  * @param buf the buffer where the public key data is stored
1690  * @param len the length of the data in @a buf
1691  * @return NULL on error
1692  */
1693 struct GNUNET_CRYPTO_rsa_BlindingKey *
1694 GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf,
1695                                size_t len);
1696
1697
1698 /**
1699  * Blinds the given message with the given blinding key
1700  *
1701  * @param hash hash of the message to sign
1702  * @param bkey the blinding key
1703  * @param pkey the public key of the signer
1704  * @param[out] buffer set to a buffer with the blinded message to be signed
1705  * @return number of bytes stored in @a buffer
1706  */
1707 size_t
1708 GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash,
1709                  struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1710                  struct GNUNET_CRYPTO_rsa_PublicKey *pkey,
1711                  char **buffer);
1712
1713
1714 /**
1715  * Sign the given message.
1716  *
1717  * @param key private key to use for the signing
1718  * @param msg the (blinded) message to sign
1719  * @param msg_len number of bytes in @a msg to sign
1720  * @return NULL on error, signature on success
1721  */
1722 struct GNUNET_CRYPTO_rsa_Signature *
1723 GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1724                 const void *msg,
1725                 size_t msg_len);
1726
1727
1728 /**
1729  * Free memory occupied by signature.
1730  *
1731  * @param sig memory to freee
1732  */
1733 void
1734 GNUNET_CRYPTO_rsa_signature_free (struct GNUNET_CRYPTO_rsa_Signature *sig);
1735
1736
1737 /**
1738  * Encode the given signature in a format suitable for storing it into a file.
1739  *
1740  * @param sig the signature
1741  * @param[out] buffer set to a buffer with the encoded key
1742  * @return size of memory allocated in @a buffer
1743  */
1744 size_t
1745 GNUNET_CRYPTO_rsa_signature_encode (const struct GNUNET_CRYPTO_rsa_Signature *sig,
1746                             char **buffer);
1747
1748
1749 /**
1750  * Decode the signature from the data-format back to the "normal", internal
1751  * format.
1752  *
1753  * @param buf the buffer where the public key data is stored
1754  * @param len the length of the data in @a buf
1755  * @return NULL on error
1756  */
1757 struct GNUNET_CRYPTO_rsa_Signature *
1758 GNUNET_CRYPTO_rsa_signature_decode (const char *buf,
1759                             size_t len);
1760
1761
1762 /**
1763  * Unblind a blind-signed signature.  The signature should have been generated
1764  * with #GNUNET_CRYPTO_rsa_sign() using a hash that was blinded with
1765  * #GNUNET_CRYPTO_rsa_blind().
1766  *
1767  * @param sig the signature made on the blinded signature purpose
1768  * @param bkey the blinding key used to blind the signature purpose
1769  * @param pkey the public key of the signer
1770  * @return unblinded signature on success, NULL on error
1771  */
1772 struct GNUNET_CRYPTO_rsa_Signature *
1773 GNUNET_CRYPTO_rsa_unblind (struct GNUNET_CRYPTO_rsa_Signature *sig,
1774                    struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1775                    struct GNUNET_CRYPTO_rsa_PublicKey *pkey);
1776
1777
1778 /**
1779  * Verify whether the given hash corresponds to the given signature and the
1780  * signature is valid with respect to the given public key.
1781  *
1782  * @param hash the message to verify to match the @a sig
1783  * @param sig signature that is being validated
1784  * @param public_key public key of the signer
1785  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1786  */
1787 int
1788 GNUNET_CRYPTO_rsa_verify (const struct GNUNET_HashCode *hash,
1789                   const struct GNUNET_CRYPTO_rsa_Signature *sig,
1790                   const struct GNUNET_CRYPTO_rsa_PublicKey *public_key);
1791
1792
1793 #if 0                           /* keep Emacsens' auto-indent happy */
1794 {
1795 #endif
1796 #ifdef __cplusplus
1797 }
1798 #endif
1799
1800
1801 /* ifndef GNUNET_CRYPTO_LIB_H */
1802 #endif
1803 /* end of gnunet_crypto_lib.h */