274612a8470ac41220f66ee364addf83ca468fed
[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  * Extract the public key for the given private key.
1059  *
1060  * @param priv the private key
1061  * @param pub where to write the public key
1062  */
1063 void
1064 GNUNET_CRYPTO_ecdhe_key_get_public (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1065                                     struct GNUNET_CRYPTO_EcdhePublicKey *pub);
1066
1067
1068 /**
1069  * Convert a public key to a string.
1070  *
1071  * @param pub key to convert
1072  * @return string representing @a pub
1073  */
1074 char *
1075 GNUNET_CRYPTO_ecdsa_public_key_to_string (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1076
1077
1078 /**
1079  * Convert a public key to a string.
1080  *
1081  * @param pub key to convert
1082  * @return string representing @a pub
1083  */
1084 char *
1085 GNUNET_CRYPTO_eddsa_public_key_to_string (const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1086
1087
1088 /**
1089  * Convert a string representing a public key to a public key.
1090  *
1091  * @param enc encoded public key
1092  * @param enclen number of bytes in @a enc (without 0-terminator)
1093  * @param pub where to store the public key
1094  * @return #GNUNET_OK on success
1095  */
1096 int
1097 GNUNET_CRYPTO_ecdsa_public_key_from_string (const char *enc,
1098                                             size_t enclen,
1099                                             struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1100
1101
1102 /**
1103  * Convert a string representing a private key to a private key.
1104  *
1105  * @param enc encoded public key
1106  * @param enclen number of bytes in @a enc (without 0-terminator)
1107  * @param priv where to store the private key
1108  * @return #GNUNET_OK on success
1109  */
1110 int
1111 GNUNET_CRYPTO_eddsa_private_key_from_string (const char *enc,
1112                                              size_t enclen,
1113                                              struct GNUNET_CRYPTO_EddsaPrivateKey *pub);
1114
1115
1116 /**
1117  * Convert a string representing a public key to a public key.
1118  *
1119  * @param enc encoded public key
1120  * @param enclen number of bytes in @a enc (without 0-terminator)
1121  * @param pub where to store the public key
1122  * @return #GNUNET_OK on success
1123  */
1124 int
1125 GNUNET_CRYPTO_eddsa_public_key_from_string (const char *enc,
1126                                             size_t enclen,
1127                                             struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1128
1129
1130 /**
1131  * @ingroup crypto
1132  * Create a new private key by reading it from a file.  If the
1133  * files does not exist, create a new key and write it to the
1134  * file.  Caller must free return value.  Note that this function
1135  * can not guarantee that another process might not be trying
1136  * the same operation on the same file at the same time.
1137  * If the contents of the file
1138  * are invalid the old file is deleted and a fresh key is
1139  * created.
1140  *
1141  * @param filename name of file to use to store the key
1142  * @return new private key, NULL on error (for example,
1143  *   permission denied); free using #GNUNET_free
1144  */
1145 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1146 GNUNET_CRYPTO_ecdsa_key_create_from_file (const char *filename);
1147
1148
1149 /**
1150  * @ingroup crypto
1151  * Create a new private key by reading it from a file.  If the
1152  * files does not exist, create a new key and write it to the
1153  * file.  Caller must free return value.  Note that this function
1154  * can not guarantee that another process might not be trying
1155  * the same operation on the same file at the same time.
1156  * If the contents of the file
1157  * are invalid the old file is deleted and a fresh key is
1158  * created.
1159  *
1160  * @param filename name of file to use to store the key
1161  * @return new private key, NULL on error (for example,
1162  *   permission denied); free using #GNUNET_free
1163  */
1164 struct GNUNET_CRYPTO_EddsaPrivateKey *
1165 GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename);
1166
1167 struct GNUNET_CONFIGURATION_Handle;
1168
1169
1170 /**
1171  * @ingroup crypto
1172  * Create a new private key by reading our peer's key from
1173  * the file specified in the configuration.
1174  *
1175  * @param cfg the configuration to use
1176  * @return new private key, NULL on error (for example,
1177  *   permission denied); free using #GNUNET_free
1178  */
1179 struct GNUNET_CRYPTO_EddsaPrivateKey *
1180 GNUNET_CRYPTO_eddsa_key_create_from_configuration (const struct GNUNET_CONFIGURATION_Handle *cfg);
1181
1182
1183 /**
1184  * @ingroup crypto
1185  * Create a new private key. Caller must free return value.
1186  *
1187  * @return fresh private key; free using #GNUNET_free
1188  */
1189 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1190 GNUNET_CRYPTO_ecdsa_key_create (void);
1191
1192
1193 /**
1194  * @ingroup crypto
1195  * Create a new private key. Caller must free return value.
1196  *
1197  * @return fresh private key; free using #GNUNET_free
1198  */
1199 struct GNUNET_CRYPTO_EddsaPrivateKey *
1200 GNUNET_CRYPTO_eddsa_key_create (void);
1201
1202
1203 /**
1204  * @ingroup crypto
1205  * Create a new private key. Caller must free return value.
1206  *
1207  * @return fresh private key; free using #GNUNET_free
1208  */
1209 struct GNUNET_CRYPTO_EcdhePrivateKey *
1210 GNUNET_CRYPTO_ecdhe_key_create (void);
1211
1212
1213 /**
1214  * @ingroup crypto
1215  * Clear memory that was used to store a private key.
1216  *
1217  * @param pk location of the key
1218  */
1219 void
1220 GNUNET_CRYPTO_eddsa_key_clear (struct GNUNET_CRYPTO_EddsaPrivateKey *pk);
1221
1222
1223 /**
1224  * @ingroup crypto
1225  * Clear memory that was used to store a private key.
1226  *
1227  * @param pk location of the key
1228  */
1229 void
1230 GNUNET_CRYPTO_ecdsa_key_clear (struct GNUNET_CRYPTO_EcdsaPrivateKey *pk);
1231
1232 /**
1233  * @ingroup crypto
1234  * Clear memory that was used to store a private key.
1235  *
1236  * @param pk location of the key
1237  */
1238 void
1239 GNUNET_CRYPTO_ecdhe_key_clear (struct GNUNET_CRYPTO_EcdhePrivateKey *pk);
1240
1241
1242 /**
1243  * @ingroup crypto
1244  * Get the shared private key we use for anonymous users.
1245  *
1246  * @return "anonymous" private key; do not free
1247  */
1248 const struct GNUNET_CRYPTO_EcdsaPrivateKey *
1249 GNUNET_CRYPTO_ecdsa_key_get_anonymous (void);
1250
1251
1252 /**
1253  * @ingroup crypto
1254  * Setup a hostkey file for a peer given the name of the
1255  * configuration file (!).  This function is used so that
1256  * at a later point code can be certain that reading a
1257  * hostkey is fast (for example in time-dependent testcases).
1258 *
1259  * @param cfg_name name of the configuration file to use
1260  */
1261 void
1262 GNUNET_CRYPTO_eddsa_setup_hostkey (const char *cfg_name);
1263
1264
1265 /**
1266  * @ingroup crypto
1267  * Retrieve the identity of the host's peer.
1268  *
1269  * @param cfg configuration to use
1270  * @param dst pointer to where to write the peer identity
1271  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the identity
1272  *         could not be retrieved
1273  */
1274 int
1275 GNUNET_CRYPTO_get_peer_identity (const struct GNUNET_CONFIGURATION_Handle *cfg,
1276                                  struct GNUNET_PeerIdentity *dst);
1277
1278
1279 /**
1280  * Compare two Peer Identities.
1281  *
1282  * @param first first peer identity
1283  * @param second second peer identity
1284  * @return bigger than 0 if first > second,
1285  *         0 if they are the same
1286  *         smaller than 0 if second > first
1287  */
1288 int
1289 GNUNET_CRYPTO_cmp_peer_identity (const struct GNUNET_PeerIdentity *first,
1290                                  const struct GNUNET_PeerIdentity *second);
1291
1292
1293 /**
1294  * @ingroup crypto
1295  * Derive key material from a public and a private ECC key.
1296  *
1297  * @param priv private key to use for the ECDH (x)
1298  * @param pub public key to use for the ECDH (yG)
1299  * @param key_material where to write the key material (xyG)
1300  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1301  */
1302 int
1303 GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1304                         const struct GNUNET_CRYPTO_EcdhePublicKey *pub,
1305                         struct GNUNET_HashCode *key_material);
1306
1307
1308 /**
1309  * @ingroup crypto
1310  * EdDSA sign a given block.
1311  *
1312  * @param priv private key to use for the signing
1313  * @param purpose what to sign (size, purpose)
1314  * @param sig where to write the signature
1315  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1316  */
1317 int
1318 GNUNET_CRYPTO_eddsa_sign (const struct GNUNET_CRYPTO_EddsaPrivateKey *priv,
1319                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1320                           struct GNUNET_CRYPTO_EddsaSignature *sig);
1321
1322
1323 /**
1324  * @ingroup crypto
1325  * ECDSA Sign a given block.
1326  *
1327  * @param priv private key to use for the signing
1328  * @param purpose what to sign (size, purpose)
1329  * @param sig where to write the signature
1330  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1331  */
1332 int
1333 GNUNET_CRYPTO_ecdsa_sign (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1334                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1335                           struct GNUNET_CRYPTO_EcdsaSignature *sig);
1336
1337 /**
1338  * @ingroup crypto
1339  * Verify EdDSA signature.
1340  *
1341  * @param purpose what is the purpose that the signature should have?
1342  * @param validate block to validate (size, purpose, data)
1343  * @param sig signature that is being validated
1344  * @param pub public key of the signer
1345  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1346  */
1347 int
1348 GNUNET_CRYPTO_eddsa_verify (uint32_t purpose,
1349                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1350                             const struct GNUNET_CRYPTO_EddsaSignature *sig,
1351                             const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1352
1353
1354
1355 /**
1356  * @ingroup crypto
1357  * Verify ECDSA signature.
1358  *
1359  * @param purpose what is the purpose that the signature should have?
1360  * @param validate block to validate (size, purpose, data)
1361  * @param sig signature that is being validated
1362  * @param pub public key of the signer
1363  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1364  */
1365 int
1366 GNUNET_CRYPTO_ecdsa_verify (uint32_t purpose,
1367                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1368                             const struct GNUNET_CRYPTO_EcdsaSignature *sig,
1369                             const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1370
1371
1372 /**
1373  * @ingroup crypto
1374  * Derive a private key from a given private key and a label.
1375  * Essentially calculates a private key 'h = H(l,P) * d mod n'
1376  * where n is the size of the ECC group and P is the public
1377  * key associated with the private key 'd'.
1378  *
1379  * @param priv original private key
1380  * @param label label to use for key deriviation
1381  * @param context additional context to use for HKDF of 'h';
1382  *        typically the name of the subsystem/application
1383  * @return derived private key
1384  */
1385 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1386 GNUNET_CRYPTO_ecdsa_private_key_derive (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1387                                         const char *label,
1388                                         const char *context);
1389
1390
1391 /**
1392  * @ingroup crypto
1393  * Derive a public key from a given public key and a label.
1394  * Essentially calculates a public key 'V = H(l,P) * P'.
1395  *
1396  * @param pub original public key
1397  * @param label label to use for key deriviation
1398  * @param context additional context to use for HKDF of 'h'.
1399  *        typically the name of the subsystem/application
1400  * @param result where to write the derived public key
1401  */
1402 void
1403 GNUNET_CRYPTO_ecdsa_public_key_derive (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub,
1404                                        const char *label,
1405                                        const char *context,
1406                                        struct GNUNET_CRYPTO_EcdsaPublicKey *result);
1407
1408
1409 /**
1410  * Output the given MPI value to the given buffer in network
1411  * byte order.  The MPI @a val may not be negative.
1412  *
1413  * @param buf where to output to
1414  * @param size number of bytes in @a buf
1415  * @param val value to write to @a buf
1416  */
1417 void
1418 GNUNET_CRYPTO_mpi_print_unsigned (void *buf,
1419                                   size_t size,
1420                                   gcry_mpi_t val);
1421
1422
1423 /**
1424  * Convert data buffer into MPI value.
1425  * The buffer is interpreted as network
1426  * byte order, unsigned integer.
1427  *
1428  * @param result where to store MPI value (allocated)
1429  * @param data raw data (GCRYMPI_FMT_USG)
1430  * @param size number of bytes in @a data
1431  */
1432 void
1433 GNUNET_CRYPTO_mpi_scan_unsigned (gcry_mpi_t *result,
1434                                  const void *data,
1435                                  size_t size);
1436
1437
1438 /**
1439  * Create a freshly generated paillier public key.
1440  *
1441  * @param[out] public_key Where to store the public key?
1442  * @param[out] private_key Where to store the private key?
1443  */
1444 void
1445 GNUNET_CRYPTO_paillier_create (struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1446                                struct GNUNET_CRYPTO_PaillierPrivateKey *private_key);
1447
1448
1449 /**
1450  * Encrypt a plaintext with a paillier public key.
1451  *
1452  * @param public_key Public key to use.
1453  * @param m Plaintext to encrypt.
1454  * @param desired_ops How many homomorphic ops the caller intends to use
1455  * @param[out] ciphertext Encrytion of @a plaintext with @a public_key.
1456  * @return guaranteed number of supported homomorphic operations >= 1,
1457  *         or desired_ops, in case that is lower,
1458  *         or -1 if less than one homomorphic operation is possible
1459  */
1460 int
1461 GNUNET_CRYPTO_paillier_encrypt (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1462                                 const gcry_mpi_t m,
1463                                 int desired_ops,
1464                                 struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext);
1465
1466
1467 /**
1468  * Decrypt a paillier ciphertext with a private key.
1469  *
1470  * @param private_key Private key to use for decryption.
1471  * @param public_key Public key to use for decryption.
1472  * @param ciphertext Ciphertext to decrypt.
1473  * @param[out] m Decryption of @a ciphertext with @private_key.
1474  */
1475 void
1476 GNUNET_CRYPTO_paillier_decrypt (const struct GNUNET_CRYPTO_PaillierPrivateKey *private_key,
1477                                 const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1478                                 const struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext,
1479                                 gcry_mpi_t m);
1480
1481
1482 /**
1483  * Compute a ciphertext that represents the sum of the plaintext in @a x1 and @a x2
1484  *
1485  * Note that this operation can only be done a finite number of times
1486  * before an overflow occurs.
1487  *
1488  * @param public_key Public key to use for encryption.
1489  * @param c1 Paillier cipher text.
1490  * @param c2 Paillier cipher text.
1491  * @param[out] result Result of the homomorphic operation.
1492  * @return #GNUNET_OK if the result could be computed,
1493  *         #GNUNET_SYSERR if no more homomorphic operations are remaining.
1494  */
1495 int
1496 GNUNET_CRYPTO_paillier_hom_add (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1497                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c1,
1498                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c2,
1499                                 struct GNUNET_CRYPTO_PaillierCiphertext *result);
1500
1501
1502 /**
1503  * Get the number of remaining supported homomorphic operations.
1504  *
1505  * @param c Paillier cipher text.
1506  * @return the number of remaining homomorphic operations
1507  */
1508 int
1509 GNUNET_CRYPTO_paillier_hom_get_remaining (const struct GNUNET_CRYPTO_PaillierCiphertext *c);
1510
1511
1512 /* ********* Chaum-style RSA-based blind signatures ******************* */
1513
1514
1515
1516
1517 /**
1518  * The private information of an RSA key pair.
1519  */
1520 struct GNUNET_CRYPTO_rsa_PrivateKey;
1521
1522 /**
1523  * The public information of an RSA key pair.
1524  */
1525 struct GNUNET_CRYPTO_rsa_PublicKey;
1526
1527 /**
1528  * Key used to blind a message
1529  */
1530 struct GNUNET_CRYPTO_rsa_BlindingKey;
1531
1532 /**
1533  * @brief an RSA signature
1534  */
1535 struct GNUNET_CRYPTO_rsa_Signature;
1536
1537
1538 /**
1539  * Create a new private key. Caller must free return value.
1540  *
1541  * @param len length of the key in bits (i.e. 2048)
1542  * @return fresh private key
1543  */
1544 struct GNUNET_CRYPTO_rsa_PrivateKey *
1545 GNUNET_CRYPTO_rsa_private_key_create (unsigned int len);
1546
1547
1548 /**
1549  * Free memory occupied by the private key.
1550  *
1551  * @param key pointer to the memory to free
1552  */
1553 void
1554 GNUNET_CRYPTO_rsa_private_key_free (struct GNUNET_CRYPTO_rsa_PrivateKey *key);
1555
1556
1557 /**
1558  * Encode the private key in a format suitable for
1559  * storing it into a file.
1560  *
1561  * @param key the private key
1562  * @param[out] buffer set to a buffer with the encoded key
1563  * @return size of memory allocatedin @a buffer
1564  */
1565 size_t
1566 GNUNET_CRYPTO_rsa_private_key_encode (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1567                               char **buffer);
1568
1569
1570 /**
1571  * Decode the private key from the data-format back
1572  * to the "normal", internal format.
1573  *
1574  * @param buf the buffer where the private key data is stored
1575  * @param len the length of the data in @a buf
1576  * @return NULL on error
1577  */
1578 struct GNUNET_CRYPTO_rsa_PrivateKey *
1579 GNUNET_CRYPTO_rsa_private_key_decode (const char *buf,
1580                               size_t len);
1581
1582
1583 /**
1584  * Extract the public key of the given private key.
1585  *
1586  * @param priv the private key
1587  * @retur NULL on error, otherwise the public key
1588  */
1589 struct GNUNET_CRYPTO_rsa_PublicKey *
1590 GNUNET_CRYPTO_rsa_private_key_get_public (const struct GNUNET_CRYPTO_rsa_PrivateKey *priv);
1591
1592
1593 /**
1594  * Compute hash over the public key.
1595  *
1596  * @param key public key to hash
1597  * @param hc where to store the hash code
1598  */
1599 void
1600 GNUNET_CRYPTO_rsa_public_key_hash (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1601                                    struct GNUNET_HashCode *hc);
1602
1603
1604 /**
1605  * Free memory occupied by the public key.
1606  *
1607  * @param key pointer to the memory to free
1608  */
1609 void
1610 GNUNET_CRYPTO_rsa_public_key_free (struct GNUNET_CRYPTO_rsa_PublicKey *key);
1611
1612
1613 /**
1614  * Encode the public key in a format suitable for
1615  * storing it into a file.
1616  *
1617  * @param key the private key
1618  * @param[out] buffer set to a buffer with the encoded key
1619  * @return size of memory allocated in @a buffer
1620  */
1621 size_t
1622 GNUNET_CRYPTO_rsa_public_key_encode (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1623                              char **buffer);
1624
1625
1626 /**
1627  * Decode the public key from the data-format back
1628  * to the "normal", internal format.
1629  *
1630  * @param buf the buffer where the public key data is stored
1631  * @param len the length of the data in @a buf
1632  * @return NULL on error
1633  */
1634 struct GNUNET_CRYPTO_rsa_PublicKey *
1635 GNUNET_CRYPTO_rsa_public_key_decode (const char *buf,
1636                              size_t len);
1637
1638
1639 /**
1640  * Create a blinding key
1641  *
1642  * @param len length of the key in bits (i.e. 2048)
1643  * @return the newly created blinding key
1644  */
1645 struct GNUNET_CRYPTO_rsa_BlindingKey *
1646 GNUNET_CRYPTO_rsa_blinding_key_create (unsigned int len);
1647
1648
1649 /**
1650  * Destroy a blinding key
1651  *
1652  * @param bkey the blinding key to destroy
1653  */
1654 void
1655 GNUNET_CRYPTO_rsa_blinding_key_free (struct GNUNET_CRYPTO_rsa_BlindingKey *bkey);
1656
1657
1658 /**
1659  * Encode the blinding key in a format suitable for
1660  * storing it into a file.
1661  *
1662  * @param bkey the blinding key
1663  * @param[out] buffer set to a buffer with the encoded key
1664  * @return size of memory allocated in @a buffer
1665  */
1666 size_t
1667 GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1668                                char **buffer);
1669
1670
1671 /**
1672  * Decode the blinding key from the data-format back
1673  * to the "normal", internal format.
1674  *
1675  * @param buf the buffer where the public key data is stored
1676  * @param len the length of the data in @a buf
1677  * @return NULL on error
1678  */
1679 struct GNUNET_CRYPTO_rsa_BlindingKey *
1680 GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf,
1681                                size_t len);
1682
1683
1684 /**
1685  * Blinds the given message with the given blinding key
1686  *
1687  * @param hash hash of the message to sign
1688  * @param bkey the blinding key
1689  * @param pkey the public key of the signer
1690  * @param[out] buffer set to a buffer with the blinded message to be signed
1691  * @return number of bytes stored in @a buffer
1692  */
1693 size_t
1694 GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash,
1695                  struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1696                  struct GNUNET_CRYPTO_rsa_PublicKey *pkey,
1697                  char **buffer);
1698
1699
1700 /**
1701  * Sign the given message.
1702  *
1703  * @param key private key to use for the signing
1704  * @param msg the (blinded) message to sign
1705  * @param msg_len number of bytes in @a msg to sign
1706  * @return NULL on error, signature on success
1707  */
1708 struct GNUNET_CRYPTO_rsa_Signature *
1709 GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1710                 const void *msg,
1711                 size_t msg_len);
1712
1713
1714 /**
1715  * Free memory occupied by signature.
1716  *
1717  * @param sig memory to freee
1718  */
1719 void
1720 GNUNET_CRYPTO_rsa_signature_free (struct GNUNET_CRYPTO_rsa_Signature *sig);
1721
1722
1723 /**
1724  * Encode the given signature in a format suitable for storing it into a file.
1725  *
1726  * @param sig the signature
1727  * @param[out] buffer set to a buffer with the encoded key
1728  * @return size of memory allocated in @a buffer
1729  */
1730 size_t
1731 GNUNET_CRYPTO_rsa_signature_encode (const struct GNUNET_CRYPTO_rsa_Signature *sig,
1732                             char **buffer);
1733
1734
1735 /**
1736  * Decode the signature from the data-format back to the "normal", internal
1737  * format.
1738  *
1739  * @param buf the buffer where the public key data is stored
1740  * @param len the length of the data in @a buf
1741  * @return NULL on error
1742  */
1743 struct GNUNET_CRYPTO_rsa_Signature *
1744 GNUNET_CRYPTO_rsa_signature_decode (const char *buf,
1745                             size_t len);
1746
1747
1748 /**
1749  * Unblind a blind-signed signature.  The signature should have been generated
1750  * with #GNUNET_CRYPTO_rsa_sign() using a hash that was blinded with
1751  * #GNUNET_CRYPTO_rsa_blind().
1752  *
1753  * @param sig the signature made on the blinded signature purpose
1754  * @param bkey the blinding key used to blind the signature purpose
1755  * @param pkey the public key of the signer
1756  * @return unblinded signature on success, NULL on error
1757  */
1758 struct GNUNET_CRYPTO_rsa_Signature *
1759 GNUNET_CRYPTO_rsa_unblind (struct GNUNET_CRYPTO_rsa_Signature *sig,
1760                    struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1761                    struct GNUNET_CRYPTO_rsa_PublicKey *pkey);
1762
1763
1764 /**
1765  * Verify whether the given hash corresponds to the given signature and the
1766  * signature is valid with respect to the given public key.
1767  *
1768  * @param hash the message to verify to match the @a sig
1769  * @param sig signature that is being validated
1770  * @param public_key public key of the signer
1771  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1772  */
1773 int
1774 GNUNET_CRYPTO_rsa_verify (const struct GNUNET_HashCode *hash,
1775                   const struct GNUNET_CRYPTO_rsa_Signature *sig,
1776                   const struct GNUNET_CRYPTO_rsa_PublicKey *public_key);
1777
1778
1779 #if 0                           /* keep Emacsens' auto-indent happy */
1780 {
1781 #endif
1782 #ifdef __cplusplus
1783 }
1784 #endif
1785
1786
1787 /* ifndef GNUNET_CRYPTO_LIB_H */
1788 #endif
1789 /* end of gnunet_crypto_lib.h */