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